* {
  box-sizing: border-box;
}

body.kq-home {
  margin: 0;
  color: #1f2937;
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.kq-home a {
  color: inherit;
  text-decoration: none;
}

.kq-home img {
  display: block;
  max-width: 100%;
}

.kq-container {
  width: 1200px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
}

.kq-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 1px 10px rgba(15, 23, 42, .06);
}

.kq-header-main {
  border-bottom: 1px solid #eef2f7;
  transition: transform .24s ease, opacity .2s ease, max-height .24s ease, border-color .2s ease;
  max-height: 86px;
  overflow: hidden;
}

.kq-header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.kq-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.kq-logo img {
  width: 184px;
  height: auto;
}

.kq-header-slogan {
  flex: 1;
  min-width: 0;
  padding-left: 24px;
  border-left: 1px solid #e5e7eb;
}

.kq-header-slogan strong {
  display: block;
  color: #1f2937;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 800;
}

.kq-header-slogan span {
  display: block;
  margin-top: 2px;
  color: #6b7280;
  font-size: 14px;
}

.kq-header-phone {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 10px;
  align-items: center;
  color: #1f2937;
}

.kq-header-phone i {
  grid-row: span 2;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0066b3;
  font-style: normal;
  font-size: 23px;
  border: 2px solid #0066b3;
  border-radius: 50%;
}

.kq-header-phone span {
  color: #6b7280;
  font-size: 12px;
}

.kq-header-phone strong {
  color: #111827;
  font-size: 26px;
  line-height: 1;
  letter-spacing: .5px;
}

.kq-menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  background: #f3f4f6;
}

.kq-menu-btn span {
  width: 20px;
  height: 2px;
  margin: 4px auto;
  display: block;
  background: #1f2937;
}

.kq-nav ul {
  min-height: 52px;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  list-style: none;
}

.kq-nav {
  background: rgb(0 102 179);
}

.kq-header.is-compact .kq-header-main {
  max-height: 0;
  opacity: 0;
  transform: translateY(-100%);
  border-bottom-color: transparent;
}

.kq-header.is-compact .kq-nav {
  box-shadow: 0 8px 24px rgba(0, 56, 110, .18);
}

.kq-header.is-compact .kq-nav ul {
  min-height: 54px;
}

.kq-nav li a {
  position: relative;
  display: block;
  padding: 17px 10px 15px;
  color: rgba(255,255,255,.92);
  font-size: 15px;
  font-weight: 700;
  transition: color .2s ease;
}

.kq-nav li a:after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 8px;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: #fff;
  transition: transform .2s ease;
}

.kq-nav li.active a,
.kq-nav li a:hover {
  color: #fff;
}

.kq-nav li.active a:after,
.kq-nav li a:hover:after {
  transform: scaleX(1);
}

.kq-hero {
  position: relative;
  height: 500px;
  margin-top: 124px;
  overflow: hidden;
  background: #eaf4fb;
}

.kq-hero-track,
.kq-hero-slide {
  position: absolute;
  inset: 0;
}

.kq-hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity .65s ease;
}

.kq-hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.kq-hero-slide:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.04), rgba(255,255,255,0) 45%, rgba(0,62,113,.04));
}

.kq-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.kq-hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.kq-hero-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  cursor: pointer;
}

.kq-hero-dots button.active {
  width: 24px;
  background: #0066b3;
}

.kq-features {
  position: relative;
  z-index: 8;
  margin-top: -32px;
  padding: 0 0 38px;
}

.kq-feature-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding: 28px 42px;
  border: 1px solid #f0f2f5;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, .09);
}

.kq-feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.kq-feature-item i {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0066b3;
  font-style: normal;
  font-size: 20px;
  border-radius: 50%;
  background: rgba(0,102,179,.1);
}

.kq-feature-item strong {
  color: #111827;
  font-size: 15px;
}

.kq-feature-item p {
  margin: 4px 0 0;
  color: #6b7280;
  font-size: 12px;
}

.kq-section {
  padding: 72px 0;
}

.kq-center {
  text-align: center;
}

.kq-section-head {
  margin-bottom: 34px;
}

.kq-section-head h2 {
  margin: 0;
  color: #111827;
  font-size: 30px;
  line-height: 1.35;
  font-weight: 800;
}

.kq-section-head p {
  margin: 9px 0 0;
  color: #6b7280;
  font-size: 14px;
}

.kq-light h2,
.kq-light p {
  color: #fff;
}

.kq-light p {
  opacity: .75;
}

.kq-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.kq-product-card {
  text-align: center;
}

.kq-product-card a {
  display: block;
}

.kq-product-img {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
  background: #f8fafc;
  transition: box-shadow .25s ease, transform .25s ease;
}

.kq-product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .3s ease;
}

.kq-product-card:hover .kq-product-img {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, .12);
}

.kq-product-card:hover img {
  transform: scale(1.05);
}

.kq-product-card h3 {
  margin: 14px 0 5px;
  color: #0066b3;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.kq-product-card p {
  margin: 0;
  color: #6b7280;
  font-size: 12px;
}

.kq-product-more {
  margin-top: 34px;
  text-align: center;
}

.kq-product-more a {
  min-width: 150px;
  height: 42px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0066b3;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid rgba(0, 102, 179, .35);
  border-radius: 6px;
  background: #fff;
  transition: .22s ease;
}

.kq-product-more a:hover {
  color: #fff;
  background: #0066b3;
}

.kq-industry {
  color: #fff;
  background: linear-gradient(135deg, #0066b3 0%, #005494 50%, #004a82 100%);
}

.kq-industry-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.kq-industry-card {
  position: relative;
  min-height: 284px;
  overflow: hidden;
  border-radius: 14px;
  background: #0b4d85;
  box-shadow: 0 16px 34px rgba(0, 29, 74, .18);
}

.kq-industry-media {
  position: absolute;
  inset: 0;
  background: center / cover no-repeat;
  transition: transform .55s ease;
}

.kq-industry-card:nth-child(1) .kq-industry-media { background-image: url("/skin/images/kq/industry-1.jpg"); }
.kq-industry-card:nth-child(2) .kq-industry-media { background-image: url("/skin/images/kq/industry-2.jpg"); }
.kq-industry-card:nth-child(3) .kq-industry-media { background-image: url("/skin/images/kq/industry-3.jpg"); }
.kq-industry-card:nth-child(4) .kq-industry-media { background-image: url("/skin/images/kq/industry-4.jpg"); }
.kq-industry-card:nth-child(5) .kq-industry-media { background-image: url("/skin/images/kq/industry-5.jpg"); }
.kq-industry-card:nth-child(6) .kq-industry-media { background-image: url("/skin/images/kq/industry-6.jpg"); }

.kq-industry-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.72));
}

.kq-industry-text {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 20px;
  z-index: 2;
  text-align: center;
  transition: transform .25s ease;
}

.kq-industry-text i {
  width: 42px;
  height: 42px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(5px);
}

.kq-industry-text strong {
  display: block;
  font-size: 15px;
}

.kq-industry-text p {
  margin: 5px 0 0;
  color: rgba(255,255,255,.75);
  font-size: 12px;
}

.kq-industry-card:hover .kq-industry-media {
  transform: scale(1.1);
}

.kq-industry-card:hover .kq-industry-text {
  transform: translateY(-5px);
}

.kq-more-center {
  margin-top: 32px;
  text-align: center;
}

.kq-white-btn,
.kq-blue-btn,
.kq-cta-primary,
.kq-cta-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  transition: .22s ease;
}

.kq-white-btn {
  color: #fff;
  border: 1px solid rgba(255,255,255,.38);
}

.kq-white-btn:hover {
  background: rgba(255,255,255,.12);
}

.kq-blue-btn,
.kq-cta-primary {
  color: #fff;
  background: #0066b3;
}

.kq-blue-btn:hover,
.kq-cta-primary:hover {
  background: #004a82;
}

.kq-about {
  background: #f7f8fa;
}

.kq-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.kq-about-video {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #111827;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .08);
}

.kq-about-video img {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  opacity: .72;
  transition: transform .45s ease, opacity .25s ease;
}

.kq-about-video:hover img {
  transform: scale(1.04);
  opacity: .82;
}

.kq-play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 62px;
  height: 62px;
  margin: -31px 0 0 -31px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0066b3;
  font-size: 24px;
  line-height: 1;
  text-indent: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 30px rgba(15, 23, 42, .18);
}

.kq-about-text h2 {
  margin: 0 0 16px;
  color: #111827;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.25;
}

.kq-about-text p {
  margin: 0 0 10px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.kq-about-text p:nth-of-type(1),
.kq-about-text p:nth-of-type(2) {
  -webkit-line-clamp: 2;
}

.kq-about-text p:nth-of-type(3) {
  -webkit-line-clamp: 2;
}

.kq-stats {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.kq-stats div {
  padding: 16px 10px 14px;
  text-align: center;
  border: 1px solid #eef2f7;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .05);
}

.kq-stats strong {
  display: block;
  color: #0066b3;
  font-size: 22px;
  line-height: 1.2;
}

.kq-stats span {
  display: block;
  margin-top: 4px;
  color: #6b7280;
  font-size: 12px;
}

.kq-cases {
  background: #fff;
}

.kq-scroll-wrap,
.kq-timeline-wrap {
  position: relative;
}

.kq-case-track,
.kq-timeline-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 4px 38px 12px;
  scrollbar-width: none;
}

.kq-case-track::-webkit-scrollbar,
.kq-timeline-track::-webkit-scrollbar {
  display: none;
}

.kq-case-card {
  width: 270px;
  flex: 0 0 270px;
  overflow: hidden;
  border: 1px solid #eef2f7;
  border-radius: 12px;
  background: #fff;
  transition: box-shadow .25s ease, transform .25s ease;
}

.kq-case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, .12);
}

.kq-case-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.kq-case-card div {
  padding: 14px 16px 16px;
}

.kq-case-card h3 {
  margin: 0;
  color: #111827;
  font-size: 15px;
  line-height: 1.45;
}

.kq-case-card p {
  margin: 6px 0 0;
  color: #6b7280;
  font-size: 12px;
}

.kq-scroll-btn {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  color: #4b5563;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .15);
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.kq-prev { left: -4px; }
.kq-next { right: -4px; }

.kq-timeline {
  background: #f7f8fa;
}

.kq-timeline-wrap {
  overflow: hidden;
}

.kq-timeline-track {
  gap: 22px;
  scroll-behavior: smooth;
}

.kq-timeline-card {
  position: relative;
  width: 292px;
  flex: 0 0 292px;
  padding: 58px 22px 26px;
  overflow: hidden;
  border: 1px solid #eef2f7;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(15, 23, 42, .05);
}

.kq-timeline-card b {
  position: absolute;
  top: 0;
  right: 0;
  padding: 7px 13px;
  color: #fff;
  font-size: 13px;
  background: #0066b3;
  border-radius: 0 16px 0 12px;
}

.kq-timeline-card:before {
  content: "";
  position: absolute;
  left: 22px;
  top: 30px;
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #0066b3;
  box-shadow: 22px 0 0 -5px rgba(0,102,179,.25), 44px 0 0 -5px rgba(0,102,179,.12);
}

.kq-timeline-card strong {
  display: block;
  color: #111827;
  font-size: 19px;
}

.kq-timeline-card p {
  margin: 9px 0 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.7;
}

.kq-news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.kq-news-card {
  overflow: hidden;
  border: 1px solid #eef2f7;
  border-radius: 14px;
  background: #fff;
  transition: box-shadow .25s ease, transform .25s ease;
}

.kq-news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, .12);
}

.kq-news-img {
  position: relative;
  height: 150px;
  overflow: hidden;
  background: #f3f4f6;
}

.kq-news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.kq-news-card:hover .kq-news-img img {
  transform: scale(1.05);
}

.kq-news-body {
  padding: 18px;
}

.kq-news-body time {
  color: #6b7280;
  font-size: 12px;
}

.kq-news-body h3 {
  min-height: 44px;
  margin: 8px 0;
  color: #111827;
  font-size: 15px;
  line-height: 1.45;
  transition: color .2s ease;
}

.kq-news-card:hover h3 {
  color: #0066b3;
}

.kq-news-body p {
  min-height: 58px;
  margin: 0 0 12px;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.65;
}

.kq-news-body span {
  color: #0066b3;
  font-size: 12px;
  font-weight: 700;
}

.kq-cta {
  padding: 74px 0;
  text-align: center;
  background: linear-gradient(135deg, #0066b3 0%, #0078d4 50%, #0066b3 100%);
}

.kq-cta h2 {
  margin: 0;
  color: #fff;
  font-size: 30px;
  font-weight: 800;
}

.kq-cta p {
  margin: 12px 0 30px;
  color: rgba(255,255,255,.8);
  font-size: 15px;
}

.kq-cta div div,
.kq-cta .kq-container > div {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.kq-cta-primary {
  color: #0066b3;
  background: #fff;
}

.kq-cta-primary:hover {
  color: #004a82;
  background: #f3f4f6;
}

.kq-cta-outline {
  color: #fff;
  border: 1px solid rgba(255,255,255,.5);
}

.kq-cta-outline:hover {
  background: rgba(255,255,255,.12);
}

.kq-contact {
  padding-top: 74px;
  padding-bottom: 74px;
  background: #f7f8fa;
}

.kq-contact-grid {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.45fr .95fr;
  gap: 20px;
}

.kq-message-card,
.kq-contact-mini {
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, .06);
}

.kq-message-card {
  padding: 20px;
}

.kq-message-card h3 {
  margin: 0 0 18px;
  color: #111827;
  font-size: 16px;
  font-weight: 800;
}

.kq-message-form label {
  display: block;
  margin: 12px 0 6px;
  color: #0066b3;
  font-size: 12px;
  font-weight: 700;
}

.kq-message-form input,
.kq-message-form textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  background: #fff;
  color: #374151;
  font-size: 12px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.kq-message-form input {
  height: 31px;
  padding: 0 10px;
}

.kq-message-form textarea {
  height: 64px;
  padding: 9px 10px;
  resize: none;
}

.kq-message-form input:focus,
.kq-message-form textarea:focus {
  border-color: #0066b3;
  box-shadow: 0 0 0 3px rgba(0, 102, 179, .08);
}

.kq-message-form button {
  width: 100%;
  height: 36px;
  margin-top: 18px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: #006ebd;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease;
}

.kq-message-form button:hover {
  background: #005494;
}

.kq-contact-cards {
  display: grid;
  gap: 12px;
}

.kq-contact-mini {
  min-height: 124px;
  padding: 18px 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.kq-contact-mini i {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #006ebd;
  font-style: normal;
  border-radius: 50%;
  background: rgba(0, 102, 179, .1);
}

.kq-contact-mini h3 {
  margin: 2px 0 8px;
  color: #111827;
  font-size: 15px;
  font-weight: 800;
}

.kq-contact-mini p {
  margin: 3px 0;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.45;
}

.kq-fixedbar {
  position: fixed;
  right: 18px;
  top: 50%;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: translateY(-50%);
}

.kq-fixedbar .kq-float-btn {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  color: #fff;
  background: #1f2937;
  box-shadow: 0 10px 22px rgba(15, 23, 42, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: background .2s ease;
}

.kq-fixedbar .kq-float-btn:hover,
.kq-fixedbar .kq-backtop {
  background: #0066b3;
}

.kq-wechat-float {
  position: relative;
}

.kq-wechat-pop {
  position: absolute;
  right: 60px;
  top: 50%;
  width: 156px;
  padding: 12px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, .18);
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: .2s ease;
}

.kq-wechat-pop:after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  background: #fff;
  transform: rotate(45deg);
}

.kq-wechat-pop img {
  width: 132px;
  height: 132px;
  object-fit: contain;
}

.kq-wechat-pop p {
  margin: 8px 0 0;
  color: #374151;
  text-align: center;
  font-size: 13px;
}

.kq-wechat-float:hover .kq-wechat-pop {
  opacity: 1;
  visibility: visible;
}

.kq-footer {
  color: rgba(255,255,255,.78);
  background: linear-gradient(135deg, #00558f 0%, #00436f 100%);
}

.kq-footer-grid {
  padding: 54px 0 42px;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 180px;
  gap: 44px;
}

.kq-footer-brand img {
  width: 170px;
  margin-bottom: 14px;
}

.kq-footer-brand p,
.kq-footer-brand span {
  display: block;
  margin: 7px 0;
  font-size: 13px;
}

.kq-footer-brand strong {
  display: block;
  margin: 13px 0 6px;
  color: #fff;
  font-size: 24px;
}

.kq-footer h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 16px;
}

.kq-footer a {
  display: block;
  margin: 9px 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
}

.kq-footer a:hover {
  color: #fff;
}

.kq-footer-qr img {
  width: 112px;
  height: 112px;
  padding: 7px;
  border-radius: 10px;
  background: #fff;
}

.kq-footer-qr p {
  color: rgba(255,255,255,.78);
  font-size: 13px;
  line-height: 1.7;
}

.kq-copy {
  padding: 18px 16px;
  text-align: center;
  color: rgba(255,255,255,.62);
  font-size: 12px;
  border-top: 1px solid rgba(255,255,255,.14);
  background: rgba(0, 42, 78, .28);
}

.kq-copy a {
  display: inline;
  color: rgba(255,255,255,.7);
}

.kq-mobile-bar {
  display: none;
}

@media (max-width: 1024px) {
  .kq-header-inner {
    min-height: 60px;
    justify-content: space-between;
    gap: 12px;
  }

  .kq-header-slogan {
    display: none;
  }

  .kq-menu-btn {
    display: block;
    margin-left: auto;
    flex: 0 0 auto;
  }

  .kq-nav {
    display: none;
  }

  .kq-header.is-compact .kq-header-main {
    max-height: 86px;
    opacity: 1;
    transform: none;
    border-bottom-color: #eef2f7;
  }

  .kq-header.is-compact .kq-nav {
    box-shadow: none;
  }

  .kq-nav.open {
    display: block;
    box-shadow: 0 12px 28px rgba(0, 56, 110, .18);
  }

  .kq-nav ul {
    min-height: auto;
    padding: 10px 0 14px;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
  }

  .kq-nav li {
    width: calc(50% - 4px);
  }

  .kq-nav li a {
    padding: 10px 12px;
    border-radius: 8px;
    background: rgba(255,255,255,.08);
    font-size: 14px;
  }

  .kq-nav li a:after {
    left: 4px;
    right: auto;
    width: 28px;
    bottom: 5px;
  }

  .kq-hero {
    height: 420px;
    margin-top: 60px;
  }

  .kq-product-grid,
  .kq-news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .kq-industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .kq-feature-panel,
  .kq-about-grid,
  .kq-contact-grid,
  .kq-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  body.kq-home {
    padding-bottom: 56px;
  }

  .kq-logo img {
    width: 118px;
  }

  .kq-header-inner {
    min-height: 56px;
  }

  .kq-header-main {
    max-height: 60px;
  }

  .kq-menu-btn {
    width: 38px;
    height: 38px;
    border-radius: 8px;
  }

  .kq-menu-btn span {
    width: 18px;
  }

  .kq-header-phone {
    display: none;
  }

  .kq-nav li {
    width: calc(50% - 4px);
  }

  .kq-hero {
    height: 235px;
    margin-top: 56px;
  }

  .kq-section {
    padding: 50px 0;
  }

  .kq-section-head h2,
  .kq-about-text h2,
  .kq-cta h2 {
    font-size: 24px;
  }

  .kq-feature-panel,
  .kq-product-grid,
  .kq-industry-grid,
  .kq-about-grid,
  .kq-stats,
  .kq-news-grid,
  .kq-contact-grid,
  .kq-footer-grid {
    grid-template-columns: 1fr;
  }

  .kq-feature-panel {
    margin-top: -28px;
    padding: 18px;
    gap: 14px;
  }

  .kq-industry-card {
    min-height: 220px;
  }

  .kq-cta .kq-container > div {
    flex-direction: column;
  }

  .kq-fixedbar {
    display: none;
  }

  .kq-mobile-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #1f2937;
    box-shadow: 0 -6px 20px rgba(0,0,0,.2);
  }

  .kq-mobile-bar a {
    padding: 12px 4px;
    color: #fff;
    text-align: center;
    font-size: 13px;
  }
}

/* Inner pages */
body.kq-inner {
  background: #fff;
}

.kq-sub-hero {
  position: relative;
  margin-top: 124px;
  height: 240px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 18% 20%, rgba(0, 120, 212, .42), transparent 30%),
    linear-gradient(135deg, #07345f 0%, #052542 52%, #031a31 100%);
  border-bottom: 0;
}

.kq-sub-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0);
  background-size: 28px 28px;
}

.kq-sub-hero .kq-container {
  position: relative;
  z-index: 1;
}

.kq-sub-hero h1 {
  margin: 0 0 14px;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 800;
}

.kq-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: rgba(255,255,255,.76);
  font-size: 14px;
}

.kq-breadcrumb a:hover {
  color: #fff;
}

.kq-inner-section {
  padding: 60px 0;
}

.kq-gray-section {
  background: #f7f8fa;
}

.kq-about-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 52px;
  align-items: center;
}

.kq-about-page-media {
  overflow: hidden;
  border-radius: 14px;
  background: #e5edf5;
}

.kq-about-page-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform .5s ease;
}

.kq-about-page-media:hover img {
  transform: scale(1.04);
}

.kq-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 11px;
  color: #0066b3;
  background: rgba(0, 102, 179, .1);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .03em;
}

.kq-about-page-text h2,
.kq-inner-head h2 {
  margin: 0;
  color: #111827;
  font-size: 32px;
  line-height: 1.25;
  font-weight: 800;
}

.kq-profile-content {
  margin-top: 18px;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.9;
}

.kq-profile-content p {
  margin: 0 0 14px;
}

.kq-profile-content img {
  display: none;
}

.kq-profile-content p:has(img) {
  display: none;
}

.kq-about-page .kq-profile-content p:nth-of-type(n+3) {
  display: none !important;
}

.kq-profile-content table {
  max-width: 100%;
}

.kq-about-stats {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.kq-about-stats div {
  padding: 22px 12px;
  text-align: center;
  border: 1px solid #eef2f7;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .05);
}

.kq-about-stats strong {
  display: block;
  color: #0066b3;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 800;
}

.kq-about-stats span {
  display: block;
  margin-top: 8px;
  color: #6b7280;
  font-size: 13px;
}

.kq-inner-head {
  margin-bottom: 30px;
  text-align: center;
}

.kq-inner-head p {
  margin: 10px 0 0;
  color: #6b7280;
  font-size: 15px;
}

.kq-culture-grid,
.kq-cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.kq-culture-card {
  padding: 30px;
  min-height: 236px;
  border: 1px solid #eef2f7;
  border-radius: 16px;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}

.kq-culture-card:hover,
.kq-cert-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(15, 23, 42, .08);
}

.kq-culture-card i {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #0066b3;
  font-style: normal;
  font-weight: 800;
  border-radius: 50%;
  background: rgba(0, 102, 179, .1);
}

.kq-culture-card h3 {
  margin: 0 0 12px;
  color: #111827;
  font-size: 19px;
}

.kq-culture-card p,
.kq-cert-card p,
.kq-about-year p {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.75;
}

.kq-cert-grid {
  grid-template-columns: repeat(4, 1fr);
}

.kq-cert-card {
  transition: transform .25s ease, box-shadow .25s ease;
}

.kq-cert-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid #eef2f7;
  border-radius: 14px;
  background: #f8fafc;
}

.kq-cert-card h3 {
  margin: 14px 0 6px;
  color: #111827;
  font-size: 15px;
  line-height: 1.45;
}

.kq-cert-card:hover h3 {
  color: #0066b3;
}

.kq-about-timeline {
  display: grid;
  grid-template-columns: repeat(7, minmax(160px, 1fr));
  gap: 0;
  overflow-x: auto;
  padding: 10px 0 16px;
}

.kq-about-year {
  position: relative;
  min-width: 160px;
  padding: 48px 12px 0;
  text-align: center;
}

.kq-about-year:before {
  content: "";
  position: absolute;
  top: 27px;
  left: 0;
  right: 0;
  height: 2px;
  background: #d9e2ec;
}

.kq-about-year:after {
  content: "";
  position: absolute;
  top: 19px;
  left: 50%;
  width: 18px;
  height: 18px;
  margin-left: -9px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: #0066b3;
  box-shadow: 0 0 0 1px #cfe4f6;
}

.kq-about-year b {
  display: block;
  color: #0066b3;
  font-size: 15px;
}

.kq-about-year strong {
  display: block;
  margin: 10px 0 6px;
  color: #111827;
  font-size: 14px;
  line-height: 1.4;
}

.kq-about-cta {
  padding: 68px 0;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #0066b3 0%, #0078d4 50%, #0066b3 100%);
}

.kq-about-cta h2 {
  margin: 0 0 12px;
  font-size: 30px;
  font-weight: 800;
}

.kq-about-cta p {
  margin: 0 0 28px;
  color: rgba(255,255,255,.8);
}

.kq-about-cta .kq-container > div {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.kq-cta-white,
.kq-cta-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 142px;
  padding: 13px 28px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.kq-cta-white {
  color: #0066b3 !important;
  background: #fff;
}

.kq-cta-outline {
  color: #fff;
  border: 1px solid rgba(255,255,255,.55);
}

.kq-cta-outline:hover {
  background: rgba(255,255,255,.12);
}

@media (max-width: 1024px) {
  .kq-sub-hero {
    margin-top: 68px;
  }

  .kq-about-overview,
  .kq-culture-grid,
  .kq-cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .kq-about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .kq-sub-hero {
    height: 180px;
  }

  .kq-sub-hero h1 {
    font-size: 28px;
  }

  .kq-inner-section {
    padding: 52px 0;
  }

  .kq-about-overview,
  .kq-culture-grid,
  .kq-cert-grid,
  .kq-about-stats {
    grid-template-columns: 1fr;
  }

  .kq-about-page-text h2,
  .kq-inner-head h2,
  .kq-about-cta h2 {
    font-size: 24px;
  }

  .kq-culture-card {
    min-height: auto;
    padding: 24px;
  }

  .kq-about-cta .kq-container > div {
    flex-direction: column;
  }
}

/* Contact page */
.kq-contact-cards-section {
  padding: 42px 0 24px;
  background: #f7f8fa;
}

.kq-contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.kq-contact-info-card,
.kq-contact-form-card,
.kq-address-card,
.kq-faq-card,
.kq-map-card {
  border: 1px solid #eef2f7;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, .05);
}

.kq-contact-info-card {
  padding: 24px 18px;
  text-align: center;
}

.kq-contact-info-card i {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: #0066b3;
  font-style: normal;
  font-weight: 800;
  border-radius: 50%;
  background: rgba(0, 102, 179, .1);
}

.kq-contact-info-card span {
  display: block;
  color: #6b7280;
  font-size: 13px;
}

.kq-contact-info-card strong {
  display: block;
  margin-top: 6px;
  color: #111827;
  font-size: 16px;
  line-height: 1.35;
}

.kq-contact-info-card p {
  margin: 6px 0 0;
  color: #9ca3af;
  font-size: 12px;
}

.kq-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, .95fr);
  gap: 28px;
  align-items: start;
}

.kq-contact-form-card,
.kq-address-card,
.kq-faq-card {
  padding: 30px;
}

.kq-contact-title {
  margin-bottom: 24px;
}

.kq-contact-title h2,
.kq-address-card h3,
.kq-faq-card h3 {
  margin: 0;
  color: #111827;
  font-size: 24px;
  font-weight: 800;
}

.kq-contact-title p {
  margin: 8px 0 0;
  color: #6b7280;
  font-size: 14px;
}

.kq-contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.kq-form-row:nth-of-type(3),
.kq-form-row:nth-of-type(4),
.kq-contact-form button {
  grid-column: 1 / -1;
}

.kq-contact-form label {
  display: block;
  margin-bottom: 7px;
  color: #0066b3;
  font-size: 14px;
  font-weight: 700;
}

.kq-contact-form input,
.kq-contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #dfe7ef;
  border-radius: 8px;
  color: #111827;
  font-size: 14px;
  font-family: inherit;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.kq-contact-form textarea {
  resize: vertical;
}

.kq-contact-form input:focus,
.kq-contact-form textarea:focus {
  border-color: #0066b3;
  box-shadow: 0 0 0 3px rgba(0, 102, 179, .1);
}

.kq-contact-form button {
  padding: 14px 18px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: #0066b3;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

.kq-contact-form button:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.kq-contact-side {
  display: grid;
  gap: 20px;
}

.kq-address-item {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.kq-address-item i {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0066b3;
  font-style: normal;
  font-size: 13px;
  border-radius: 50%;
  background: rgba(0, 102, 179, .1);
}

.kq-address-item strong {
  display: block;
  color: #111827;
  font-size: 15px;
}

.kq-address-item p {
  margin: 5px 0 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.7;
}

.kq-qr-row {
  display: flex;
  gap: 18px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid #eef2f7;
}

.kq-qr-row div {
  text-align: center;
}

.kq-qr-row img {
  width: 100px;
  height: 100px;
  padding: 6px;
  object-fit: contain;
  border-radius: 10px;
  background: #f8fafc;
}

.kq-qr-row p {
  margin: 8px 0 0;
  color: #6b7280;
  font-size: 12px;
}

.kq-faq-card details {
  margin-top: 10px;
  border: 1px solid #eef2f7;
  border-radius: 10px;
  overflow: hidden;
}

.kq-faq-card summary {
  padding: 13px 15px;
  color: #374151;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.kq-faq-card summary::-webkit-details-marker {
  display: none;
}

.kq-faq-card details[open] summary,
.kq-faq-card summary:hover {
  color: #0066b3;
}

.kq-faq-card details p {
  margin: 0;
  padding: 0 15px 14px;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.75;
}

.kq-contact-map-section {
  padding: 0 0 72px;
}

.kq-contact-faq-section {
  margin-top: -18px;
  padding: 34px 0 56px;
  background: linear-gradient(180deg, #fff 0%, #f7f8fa 100%);
}

.kq-faq-center {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 16px 42px rgba(15, 23, 42, .06);
}

.kq-faq-center h3 {
  margin-bottom: 18px;
  text-align: center;
  font-size: 26px;
}

.kq-faq-center details {
  border-color: #e5edf5;
  background: #fff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, .025);
}

.kq-faq-center summary {
  position: relative;
  padding: 16px 48px 16px 18px;
}

.kq-faq-center summary:after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0066b3;
  border-radius: 50%;
  background: rgba(0, 102, 179, .09);
  transform: translateY(-50%);
}

.kq-faq-center details[open] summary:after {
  content: "-";
}

.kq-map-card {
  min-height: 310px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 30%, rgba(0, 102, 179, .12), transparent 34%),
    linear-gradient(135deg, #eef6fc, #f8fafc);
}

.kq-map-placeholder {
  max-width: 620px;
  padding: 0 20px;
  text-align: center;
}

.kq-map-placeholder i {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: #0066b3;
  font-style: normal;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 102, 179, .12);
}

.kq-map-placeholder strong {
  display: block;
  color: #111827;
  font-size: 20px;
}

.kq-map-placeholder p {
  margin: 8px 0 0;
  color: #6b7280;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .kq-contact-info-grid,
  .kq-contact-layout {
    grid-template-columns: repeat(2, 1fr);
  }

  .kq-contact-layout {
    align-items: stretch;
  }
}

@media (max-width: 640px) {
  .kq-contact-cards-section {
    padding: 28px 0 10px;
  }

  .kq-contact-info-grid,
  .kq-contact-layout,
  .kq-contact-form {
    grid-template-columns: 1fr;
  }

  .kq-contact-form-card,
  .kq-address-card,
  .kq-faq-card {
    padding: 22px;
  }

  .kq-contact-title h2,
  .kq-address-card h3,
  .kq-faq-card h3 {
    font-size: 21px;
  }

  .kq-qr-row {
    justify-content: center;
  }

  .kq-map-card {
    min-height: 240px;
  }
}

/* Tech transfer page */
.kq-tech-section {
  padding: 54px 0 72px;
}

.kq-tech-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 36px;
  align-items: start;
}

.kq-tech-main {
  max-width: 860px;
}

.kq-tech-main > h1 {
  margin: 0 0 24px;
  color: #111827;
  font-size: 32px;
  line-height: 1.25;
  font-weight: 800;
}

.kq-tech-intro {
  margin-bottom: 30px;
  padding: 22px;
  color: #374151;
  line-height: 1.9;
  border: 1px solid rgba(0, 102, 179, .12);
  border-radius: 14px;
  background: #f0f7ff;
}

.kq-tech-intro p,
.kq-tech-block p {
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.9;
}

.kq-tech-block {
  margin-bottom: 34px;
}

.kq-tech-block h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #111827;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 800;
}

.kq-tech-block h2 span {
  width: 4px;
  height: 22px;
  border-radius: 999px;
  background: #0066b3;
}

.kq-tech-light-title:before {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  border-radius: 50%;
  background: rgba(0, 102, 179, .14);
}

.kq-process-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.kq-process-flow b {
  position: relative;
  padding: 9px 13px;
  color: #0066b3;
  background: rgba(0, 102, 179, .1);
  border-radius: 9px;
  font-size: 14px;
}

.kq-process-flow b:not(:last-child):after {
  content: ">";
  position: absolute;
  right: -16px;
  top: 50%;
  color: #cbd5e1;
  transform: translateY(-50%);
}

.kq-advantage-list {
  display: grid;
  gap: 12px;
}

.kq-advantage-list div {
  display: flex;
  gap: 13px;
  padding: 16px;
  border: 1px solid #eef2f7;
  border-radius: 14px;
  background: #f8fafc;
}

.kq-advantage-list i {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-style: normal;
  font-size: 13px;
  font-weight: 800;
  border-radius: 50%;
  background: #0066b3;
}

.kq-tech-cta {
  padding: 28px;
  color: #fff;
  border-radius: 16px;
  background: linear-gradient(135deg, #0066b3 0%, #004a82 100%);
}

.kq-tech-cta h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.kq-tech-cta p {
  margin: 0 0 18px;
  color: rgba(255,255,255,.82);
  line-height: 1.8;
}

.kq-tech-cta div {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.kq-tech-phone,
.kq-tech-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  padding: 11px 22px;
  border-radius: 9px;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.25;
  text-decoration: none !important;
  opacity: 1 !important;
}

.kq-tech-phone {
  color: #0066b3 !important;
  background: #fff !important;
}

.kq-tech-outline {
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.35);
  background: transparent !important;
}

.kq-tech-sticky {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
}

.kq-tech-consult,
.kq-tech-card {
  padding: 22px;
  border: 1px solid #eef2f7;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, .05);
}

.kq-tech-consult {
  color: #fff;
  background: linear-gradient(135deg, #0066b3, #005291);
}

.kq-tech-consult h3,
.kq-tech-card h3 {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 800;
}

.kq-tech-consult p {
  margin: 0 0 16px;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  line-height: 1.7;
}

.kq-tech-consult a {
  display: block;
  padding: 11px 12px;
  text-align: center;
  color: #0066b3;
  border-radius: 9px;
  background: #fff;
  font-weight: 800;
}

.kq-tech-card h3 {
  padding-bottom: 13px;
  color: #111827;
  border-bottom: 1px solid #eef2f7;
}

.kq-tech-card p {
  position: relative;
  margin: 11px 0 0;
  padding-left: 22px;
  color: #4b5563;
  font-size: 14px;
}

.kq-tech-card p:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
}

.kq-tech-card dl {
  margin: 0;
  display: grid;
  gap: 11px;
}

.kq-tech-card dl div {
  display: flex;
}

.kq-tech-card dt,
.kq-tech-card dd {
  margin: 0;
  font-size: 14px;
}

.kq-tech-card dt {
  float: left;
  color: #6b7280;
}

.kq-tech-card dd {
  text-align: right;
  color: #0066b3;
  font-weight: 800;
}

.kq-tech-card dl {
  display: grid;
  grid-template-columns: 1fr auto;
}

.kq-tech-back {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 16px;
  color: #fff !important;
  text-align: center;
  border-radius: 10px;
  background: #1f2937 !important;
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none !important;
  opacity: 1 !important;
}

@media (max-width: 1024px) {
  .kq-tech-layout {
    grid-template-columns: 1fr;
  }

  .kq-tech-main {
    max-width: none;
  }

  .kq-tech-sticky {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .kq-tech-section {
    padding: 38px 0 54px;
  }

  .kq-tech-main > h1 {
    font-size: 25px;
  }

  .kq-tech-intro,
  .kq-tech-cta,
  .kq-tech-consult,
  .kq-tech-card {
    padding: 20px;
  }

  .kq-process-flow {
    gap: 8px;
  }

  .kq-process-flow b:not(:last-child):after {
    display: none;
  }

  .kq-tech-sticky {
    grid-template-columns: 1fr;
  }

  .kq-tech-cta div {
    flex-direction: column;
  }
}

/* Case list and detail */
.kq-case-page {
  background: #f5f7fa;
}

.kq-case-hero {
  position: relative;
  padding: 164px 0 76px;
  color: #fff;
  overflow: hidden;
  background: #0066b3;
}

.kq-case-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 102, 179, .94), rgba(0, 102, 179, .65)),
    url("/skin/images/kq/banner-2.jpg") center/cover no-repeat;
}

.kq-case-hero .kq-container {
  position: relative;
  z-index: 1;
}

.kq-case-hero .kq-breadcrumb {
  margin-bottom: 16px;
}

.kq-case-hero h1 {
  margin: 0 0 12px;
  font-size: 40px;
  font-weight: 800;
}

.kq-case-hero p {
  max-width: 680px;
  margin: 0;
  color: rgba(255,255,255,.82);
  line-height: 1.8;
}

.kq-case-list-section,
.kq-case-detail-section {
  padding: 56px 0 72px;
}

.kq-case-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.kq-case-filter-card,
.kq-case-list-card,
.kq-case-detail-main,
.kq-case-contact-cta,
.kq-case-side-card {
  border: 1px solid #eef2f7;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(15,23,42,.05);
}

.kq-case-filter {
  position: sticky;
  top: 72px;
  display: grid;
  gap: 18px;
  align-self: start;
}

.kq-case-filter-card,
.kq-case-filter .kq-case-filter-card {
  position: relative;
  top: auto;
  padding: 22px;
}

.kq-case-filter .kq-case-filter-card:first-child {
  position: relative;
  top: auto;
  z-index: 2;
}

.kq-case-filter-card h3 {
  margin: 0 0 14px;
  color: #111827;
  font-size: 18px;
}

.kq-case-filter-card > a {
  display: block;
  margin-top: 7px;
  padding: 10px 12px;
  color: #4b5563;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
}

.kq-case-filter-card > a.active,
.kq-case-filter-card > a:hover {
  color: #fff;
  background: #0066b3;
}

.kq-case-stats {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid #eef2f7;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.kq-case-stats div {
  padding: 14px 8px;
  text-align: center;
  border-radius: 10px;
  background: #f0f7ff;
}

.kq-case-stats strong {
  display: block;
  color: #0066b3;
  font-size: 22px;
}

.kq-case-stats span {
  color: #6b7280;
  font-size: 12px;
}

.kq-case-side-extra {
  padding: 22px;
}

.kq-case-industry-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.kq-case-industry-list li {
  position: relative;
  padding-left: 18px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.6;
}

.kq-case-industry-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0066b3;
}

.kq-case-side-consult {
  color: #fff;
  background: linear-gradient(135deg, #0066b3, #004f8c);
}

.kq-case-side-consult h3 {
  color: #fff;
}

.kq-case-side-consult p {
  margin: 0 0 16px;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  line-height: 1.7;
}

.kq-case-side-consult > a {
  display: block;
  padding: 11px 12px;
  text-align: center;
  color: #0066b3 !important;
  background: #fff;
  border-radius: 9px;
  font-weight: 800;
}

.kq-case-list {
  display: grid;
  gap: 22px;
}

.kq-case-list-card {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.kq-case-list-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(15,23,42,.08);
}

.kq-case-list-img {
  overflow: hidden;
  background: #e5edf5;
}

.kq-case-list-img img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  transition: transform .5s ease;
}

.kq-case-list-card:hover .kq-case-list-img img {
  transform: scale(1.05);
}

.kq-case-list-body {
  padding: 24px;
}

.kq-case-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 10px;
  color: #0066b3;
  background: rgba(0,102,179,.1);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.kq-case-list-body h3 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 21px;
  line-height: 1.35;
}

.kq-case-list-body a:hover h3 {
  color: #0066b3;
}

.kq-case-sub,
.kq-case-list-body p {
  margin: 0 0 12px;
  color: #6b7280;
  line-height: 1.75;
  font-size: 14px;
}

.kq-case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 14px 0;
  color: #6b7280;
  font-size: 13px;
}

.kq-case-more {
  color: #0066b3;
  font-size: 14px;
  font-weight: 800;
}

.kq-case-pages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  text-align: center;
}

.kq-case-pages ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.kq-case-pages li {
  display: inline-flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.kq-case-pages a,
.kq-case-pages span,
.kq-case-pages li a,
.kq-case-pages li span {
  display: inline-flex;
  min-width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 10px;
  border-radius: 7px;
  background: #fff;
  color: #4b5563;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  line-height: 1;
}

.kq-case-pages a:hover,
.kq-case-pages .active a,
.kq-case-pages .active span,
.kq-case-pages li.active a,
.kq-case-pages li.active span,
.kq-case-pages .current,
.kq-case-pages span.current {
  color: #fff !important;
  background: #0066b3;
  border-color: #0066b3;
}

.kq-case-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  align-items: start;
}

.kq-case-detail-main {
  padding: 30px;
}

.kq-case-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
  color: #6b7280;
  font-size: 13px;
}

.kq-case-detail-meta span {
  padding: 5px 10px;
  color: #0066b3;
  background: rgba(0,102,179,.1);
  border-radius: 6px;
  font-style: normal;
  font-weight: 800;
}

.kq-case-detail-meta em {
  font-style: normal;
}

.kq-case-detail-main h1 {
  margin: 0 0 10px;
  color: #111827;
  font-size: 32px;
  line-height: 1.35;
}

.kq-case-detail-desc {
  margin: 0 0 24px;
  color: #6b7280;
  line-height: 1.8;
}

.kq-case-detail-img {
  overflow: hidden;
  margin-bottom: 28px;
  border-radius: 14px;
  background: #e5edf5;
}

.kq-case-detail-img img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}

.kq-case-content {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.9;
}

.kq-case-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.kq-case-content table {
  max-width: 100%;
  overflow-x: auto;
}

.kq-case-equipment {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid #eef2f7;
}

.kq-case-equipment h3 {
  margin: 0 0 14px;
  color: #111827;
  font-size: 19px;
}

.kq-case-equipment div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.kq-case-equipment span {
  padding: 13px 14px;
  color: #374151;
  border-radius: 9px;
  background: #f0f7ff;
  font-weight: 700;
}

.kq-case-prenext {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #eef2f7;
}

.kq-case-prenext a,
.kq-case-prenext span {
  max-width: 48%;
  color: #4b5563;
  font-size: 14px;
}

.kq-case-detail-side {
  min-width: 0;
}

.kq-case-side-sticky {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
}

.kq-case-contact-cta {
  padding: 24px;
  color: #fff;
  background: linear-gradient(135deg, #0066b3, #005291);
}

.kq-case-contact-cta h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.kq-case-contact-cta p {
  margin: 0 0 16px;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  font-size: 14px;
}

.kq-case-contact-cta a {
  display: block;
  padding: 11px 12px;
  text-align: center;
  color: #0066b3 !important;
  border-radius: 9px;
  background: #fff;
  font-weight: 800;
}

.kq-case-side-card {
  padding: 22px;
}

.kq-case-side-card h3 {
  margin: 0 0 15px;
  padding-bottom: 13px;
  color: #111827;
  border-bottom: 1px solid #eef2f7;
  font-size: 17px;
}

.kq-case-side-card > a {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  color: #374151;
}

.kq-case-side-card img {
  width: 82px;
  height: 58px;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 8px;
}

.kq-case-side-card span {
  font-size: 14px;
  line-height: 1.5;
}

.kq-case-side-card p {
  margin: 10px 0 0;
}

.kq-case-side-card p a {
  color: #4b5563;
  font-size: 14px;
}

.kq-case-back {
  padding: 13px 16px;
  text-align: center;
  color: #fff !important;
  border-radius: 10px;
  background: #0066b3;
  font-weight: 800;
}

@media (max-width: 1024px) {
  .kq-case-layout,
  .kq-case-detail-layout {
    grid-template-columns: 1fr;
  }

  .kq-case-filter,
  .kq-case-filter-card,
  .kq-case-side-sticky {
    position: static;
    top: auto;
  }

  .kq-case-filter-card > a {
    display: inline-block;
    margin-right: 8px;
  }
}

@media (max-width: 640px) {
  .kq-case-hero {
    padding: 112px 0 48px;
  }

  .kq-case-hero h1 {
    font-size: 30px;
  }

  .kq-case-list-card {
    grid-template-columns: 1fr;
  }

  .kq-case-list-img img {
    min-height: 210px;
  }

  .kq-case-detail-main {
    padding: 22px;
  }

  .kq-case-detail-main h1 {
    font-size: 24px;
  }

  .kq-case-equipment div {
    grid-template-columns: 1fr;
  }

  .kq-case-prenext {
    flex-direction: column;
  }

  .kq-case-prenext a,
  .kq-case-prenext span {
    max-width: 100%;
  }
}

/* News list and detail */
.kq-news-page {
  background: #f5f7fa;
}

.kq-news-hero {
  position: relative;
  padding: 164px 0 76px;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(135deg, #0066b3 0%, #004a82 100%);
}

.kq-news-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image: radial-gradient(rgba(255,255,255,.8) 1px, transparent 1px);
  background-size: 28px 28px;
}

.kq-news-hero .kq-container {
  position: relative;
  z-index: 1;
}

.kq-news-hero h1 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 40px;
  font-weight: 800;
}

.kq-news-list-section,
.kq-news-detail-section {
  padding: 56px 0 72px;
}

.kq-news-layout,
.kq-news-detail-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.kq-news-detail-layout {
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
}

.kq-news-sidebar,
.kq-news-side-sticky {
  position: sticky;
  top: 72px;
  display: grid;
  gap: 18px;
}

.kq-news-side-card,
.kq-news-card,
.kq-news-detail-main {
  border: 1px solid #eef2f7;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(15,23,42,.05);
}

.kq-news-side-card {
  padding: 22px;
}

.kq-news-cats {
  overflow: hidden;
  padding: 0;
}

.kq-news-cats h3 {
  margin: 0;
  padding: 16px 20px;
  color: #fff;
  background: #0066b3;
  font-size: 17px;
}

.kq-news-side-card.kq-news-cats h3 {
  color: #fff !important;
}

.kq-news-cats nav {
  display: grid;
  gap: 6px;
  padding: 12px;
}

.kq-news-cats a {
  padding: 11px 13px;
  color: #4b5563;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
}

.kq-news-cats a.active,
.kq-news-cats a:hover {
  color: #0066b3;
  background: rgba(0,102,179,.1);
}

.kq-news-side-card h3 {
  margin: 0 0 14px;
  padding-bottom: 12px;
  color: #111827;
  border-bottom: 1px solid #eef2f7;
  font-size: 17px;
}

.kq-news-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.kq-news-tags a,
.kq-news-tags span {
  padding: 7px 10px;
  color: #4b5563;
  background: #f3f6fa;
  border-radius: 8px;
  font-size: 12px;
}

.kq-news-tags a:hover {
  color: #0066b3;
  background: rgba(0,102,179,.1);
}

.kq-news-consult {
  padding: 22px;
  color: #fff;
  border-radius: 16px;
  background: linear-gradient(135deg, #0066b3, #004a82);
}

.kq-news-consult h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.kq-news-consult p {
  margin: 0 0 14px;
  color: rgba(255,255,255,.82);
  font-size: 13px;
  line-height: 1.7;
}

.kq-news-consult a,
.kq-news-back {
  display: inline-flex;
  justify-content: center;
  padding: 10px 16px;
  color: #0066b3 !important;
  background: #fff;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 800;
}

.kq-news-list {
  display: grid;
  gap: 22px;
}

.kq-news-card {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.kq-news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(15,23,42,.08);
}

.kq-news-img {
  width: 260px;
  height: 260px;
  overflow: hidden;
  background: #e5edf5;
}

.kq-news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.kq-news-card:hover .kq-news-img img {
  transform: scale(1.05);
}

.kq-news-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
}

.kq-news-meta,
.kq-news-detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #6b7280;
  font-size: 13px;
}

.kq-news-meta span,
.kq-news-detail-meta span {
  padding: 4px 10px;
  color: #0066b3;
  background: rgba(0,102,179,.1);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
}

.kq-news-meta em,
.kq-news-detail-meta em {
  font-style: normal;
}

.kq-news-body h3 {
  margin: 0 0 10px;
  color: #111827;
  font-size: 21px;
  line-height: 1.35;
}

.kq-news-body a:hover h3 {
  color: #0066b3;
}

.kq-news-body p {
  margin: 0 0 14px;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.8;
}

.kq-news-more {
  color: #0066b3;
  font-size: 14px;
  font-weight: 800;
}

.kq-news-pages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.kq-news-pages ul,
.kq-news-pages li {
  display: contents;
  margin: 0;
  padding: 0;
  list-style: none;
}

.kq-news-pages a,
.kq-news-pages span {
  display: inline-flex;
  min-width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  color: #4b5563;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 7px;
  font-size: 14px;
}

.kq-news-pages a:hover,
.kq-news-pages .active a,
.kq-news-pages .active span,
.kq-news-pages .current {
  color: #fff !important;
  background: #0066b3;
  border-color: #0066b3;
}

.kq-news-detail-main {
  padding: 30px;
}

.kq-news-detail-main h1 {
  margin: 0 0 24px;
  color: #111827;
  font-size: 32px;
  line-height: 1.35;
}

.kq-news-detail-img {
  overflow: hidden;
  margin-bottom: 28px;
  border-radius: 14px;
  background: #e5edf5;
}

.kq-news-detail-img img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
}

.kq-news-content {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.95;
}

.kq-news-content p {
  margin: 0 0 16px;
}

.kq-news-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.kq-news-prenext {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid #eef2f7;
}

.kq-news-prenext a,
.kq-news-prenext span {
  max-width: 48%;
  color: #4b5563;
  font-size: 14px;
}

.kq-news-side-item {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  color: #374151;
}

.kq-news-side-item img {
  width: 82px;
  height: 58px;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 8px;
}

.kq-news-side-item span,
.kq-news-side-card p a {
  color: #374151;
  font-size: 14px;
  line-height: 1.5;
}

.kq-news-side-card p {
  position: relative;
  margin: 10px 0 0;
  padding-left: 14px;
}

.kq-news-side-card p:before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0,102,179,.45);
}

.kq-news-back {
  display: block;
  padding: 13px 16px;
  color: #fff !important;
  text-align: center;
  background: #0066b3;
}

@media (max-width: 1024px) {
  .kq-news-layout,
  .kq-news-detail-layout {
    grid-template-columns: 1fr;
  }

  .kq-news-sidebar,
  .kq-news-side-sticky {
    position: static;
    top: auto;
  }

  .kq-news-cats nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .kq-news-hero {
    padding: 112px 0 48px;
  }

  .kq-news-hero h1 {
    font-size: 30px;
  }

  .kq-news-list-section,
  .kq-news-detail-section {
    padding: 24px 0 48px;
  }

  .kq-news-card {
    grid-template-columns: 1fr;
  }

  .kq-news-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .kq-news-img img {
    min-height: 0;
  }

  .kq-news-body,
  .kq-news-detail-main,
  .kq-news-side-card,
  .kq-news-consult {
    padding: 18px;
  }

  .kq-news-detail-main h1 {
    font-size: 24px;
  }

  .kq-news-prenext {
    flex-direction: column;
  }

  .kq-news-prenext a,
  .kq-news-prenext span {
    max-width: 100%;
  }
}

/* Product and service catalog */
.kq-product-page,
.kq-service-page {
  background: #f5f7fa;
}

.kq-catalog-hero {
  position: relative;
  padding: 164px 0 76px;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(135deg, #0066b3 0%, #004a82 100%);
}

.kq-catalog-hero-small {
  padding-bottom: 60px;
}

.kq-catalog-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image: radial-gradient(rgba(255,255,255,.8) 1px, transparent 1px);
  background-size: 28px 28px;
}

.kq-catalog-hero .kq-container {
  position: relative;
  z-index: 1;
}

.kq-catalog-hero h1 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 40px;
  font-weight: 800;
}

.kq-product-list-section,
.kq-product-detail-section,
.kq-service-list-section,
.kq-service-detail-section {
  padding: 56px 0 72px;
}

.kq-product-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.kq-product-sidebar,
.kq-product-side-sticky,
.kq-service-side-sticky {
  position: sticky;
  top: 72px;
  display: grid;
  gap: 18px;
}

.kq-product-detail-side {
  align-self: start;
}

.kq-product-page .kq-product-side-sticky {
  top: 76px;
  max-height: none;
  overflow: visible;
  padding-right: 0;
}

.kq-product-side-card,
.kq-product-card,
.kq-product-detail-main,
.kq-service-card,
.kq-service-detail-main,
.kq-service-side-card {
  border: 1px solid #eef2f7;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(15,23,42,.05);
}

.kq-product-cats {
  overflow: hidden;
}

.kq-product-cats h3,
.kq-service-side-card h3 {
  margin: 0 0 14px;
  color: #111827;
  font-size: 17px;
}

.kq-product-sidebar .kq-product-cats h3 {
  margin: -22px -22px 12px;
  padding: 16px 20px;
  color: #fff;
  background: #0066b3;
}

.kq-product-side-card {
  padding: 22px;
}

.kq-product-cats nav {
  display: grid;
  gap: 6px;
}

.kq-product-cats nav a {
  display: flex;
  justify-content: space-between;
  padding: 11px 13px;
  color: #4b5563;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
}

.kq-product-cats nav a.active,
.kq-product-cats nav a:hover {
  color: #0066b3;
  background: rgba(0,102,179,.1);
}

.kq-product-list-head {
  margin-bottom: 22px;
}

.kq-product-list-head h2 {
  margin: 0 0 6px;
  color: #111827;
  font-size: 24px;
}

.kq-product-list-head p {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
}

.kq-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.kq-product-card {
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.kq-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(15,23,42,.08);
}

.kq-product-img {
  display: block;
  aspect-ratio: 4 / 3;
  padding: 18px;
  background: #f8fafc;
}

.kq-product-page .kq-product-list .kq-product-img {
  aspect-ratio: 1 / 1;
  padding: 6px;
}

.kq-product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .5s ease;
}

.kq-product-card:hover .kq-product-img img {
  transform: scale(1.05);
}

.kq-product-body {
  padding: 18px;
}

.kq-product-body h3 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 16px;
  line-height: 1.45;
}

.kq-product-body a:hover h3 {
  color: #0066b3;
}

.kq-product-body p {
  display: -webkit-box;
  min-height: 0;
  height: 42px;
  margin: 0 0 12px;
  overflow: hidden;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.kq-product-more,
.kq-service-more {
  color: #0066b3;
  font-size: 13px;
  font-weight: 800;
}

.kq-product-pages,
.kq-service-pages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.kq-product-pages ul,
.kq-product-pages li,
.kq-service-pages ul,
.kq-service-pages li {
  display: contents;
  list-style: none;
}

.kq-product-pages a,
.kq-product-pages span,
.kq-service-pages a,
.kq-service-pages span {
  display: inline-flex;
  min-width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  color: #4b5563;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 7px;
  font-size: 14px;
}

.kq-product-pages a:hover,
.kq-product-pages .active a,
.kq-service-pages a:hover,
.kq-service-pages .active a {
  color: #fff !important;
  background: #0066b3;
  border-color: #0066b3;
}

.kq-product-hero {
  padding: 28px 0;
  background: #f8fafc;
  border-bottom: 1px solid #eef2f7;
}

.kq-product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 46%) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.kq-product-main-img {
  position: relative;
  overflow: hidden;
  height: 430px;
  padding: 18px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(15,23,42,.05);
}

.kq-product-slide {
  display: none;
  width: 100%;
  height: 100%;
}

.kq-product-slide.active {
  display: block;
}

.kq-product-slide img,
.kq-product-main-img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.kq-product-gallery-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #4b5563;
  background: rgba(255,255,255,.94);
  box-shadow: 0 8px 22px rgba(15,23,42,.12);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  transform: translateY(-50%);
  transition: color .2s ease, transform .2s ease;
}

.kq-product-gallery-btn:hover {
  color: #0066b3;
  transform: translateY(-50%) scale(1.06);
}

.kq-product-prev {
  left: 14px;
}

.kq-product-next {
  right: 14px;
}

.kq-product-counter {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  padding: 4px 10px;
  color: #fff;
  background: rgba(17,24,39,.58);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.kq-product-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.kq-product-thumbs span {
  width: 68px;
  height: 68px;
  padding: 6px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}

.kq-product-thumbs span.active {
  border-color: #0066b3;
  box-shadow: 0 0 0 2px rgba(0,102,179,.12);
}

.kq-product-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.kq-product-tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 12px;
  color: #0066b3;
  background: rgba(0,102,179,.1);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.kq-product-info h1 {
  margin: 0 0 10px;
  color: #111827;
  font-size: 28px;
  line-height: 1.35;
}

.kq-product-info p {
  margin: 0 0 22px;
  color: #6b7280;
  line-height: 1.8;
  max-height: 78px;
  overflow: hidden;
}

.kq-product-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.kq-product-feature-grid div {
  padding: 14px;
  text-align: center;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
}

.kq-product-feature-grid strong {
  display: block;
  color: #111827;
  font-size: 14px;
}

.kq-product-feature-grid span {
  color: #6b7280;
  font-size: 12px;
}

.kq-product-actions {
  display: flex;
  gap: 12px;
}

.kq-product-actions a {
  flex: 1;
  padding: 12px 18px;
  text-align: center;
  color: #fff !important;
  border-radius: 10px;
  background: #0066b3;
  font-weight: 800;
}

.kq-product-actions a + a {
  color: #0066b3 !important;
  background: #fff;
  border: 1px solid #0066b3;
}

.kq-product-detail-layout,
.kq-service-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  align-items: start;
}

.kq-product-detail-main,
.kq-service-detail-main {
  padding: 30px;
}

.kq-product-block {
  margin-bottom: 34px;
}

.kq-product-block h2,
.kq-service-block h2,
.kq-service-process h2 {
  margin: 0 0 18px;
  padding-bottom: 12px;
  color: #111827;
  border-bottom: 1px solid #eef2f7;
  font-size: 20px;
}

.kq-product-content,
.kq-service-content {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.9;
}

.kq-product-content img,
.kq-service-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.kq-product-params {
  color: #4b5563;
  line-height: 1.8;
}

.kq-product-params ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.kq-product-params li {
  padding: 12px 14px;
  border-radius: 9px;
  background: #f8fafc;
}

.kq-product-cta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 30px;
  padding: 24px;
  color: #fff;
  border-radius: 16px;
  background: linear-gradient(135deg, #0066b3, #004a82);
}

.kq-product-cta h3 {
  margin: 0 0 6px;
  color: #fff;
}

.kq-product-cta p {
  margin: 0;
  color: rgba(255,255,255,.82);
}

.kq-product-cta a {
  white-space: nowrap;
  padding: 11px 16px;
  color: #0066b3 !important;
  background: #fff;
  border-radius: 10px;
  font-weight: 800;
}

.kq-product-prenext,
.kq-service-prenext {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid #eef2f7;
}

.kq-product-prenext a,
.kq-product-prenext span,
.kq-service-prenext a,
.kq-service-prenext span {
  max-width: 48%;
  color: #4b5563;
  font-size: 14px;
}

.kq-product-side-item,
.kq-service-side-item {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  color: #374151;
}

.kq-product-side-item img,
.kq-service-side-item img {
  width: 72px;
  height: 60px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 8px;
  background: #f8fafc;
}

.kq-service-side-item img {
  object-fit: cover;
}

.kq-product-side-item span,
.kq-service-side-item span {
  font-size: 14px;
  line-height: 1.5;
}

.kq-product-back,
.kq-service-back {
  display: block;
  padding: 13px 16px;
  color: #fff !important;
  text-align: center;
  border-radius: 10px;
  background: #0066b3;
  font-weight: 800;
}

.kq-service-filter {
  position: sticky;
  top: 56px;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid #eef2f7;
}

.kq-service-tabs {
  display: flex;
  gap: 8px;
  align-items: center;
  overflow-x: auto;
  padding: 14px 0;
}

.kq-service-tabs span {
  flex: 0 0 auto;
  color: #6b7280;
  font-size: 14px;
  font-weight: 800;
}

.kq-service-tabs a {
  flex: 0 0 auto;
  padding: 8px 14px;
  color: #4b5563;
  border-radius: 999px;
  font-size: 14px;
}

.kq-service-tabs a.active,
.kq-service-tabs a:hover {
  color: #fff;
  background: #0066b3;
}

.kq-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.kq-service-card {
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.kq-service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(15,23,42,.08);
}

.kq-service-img {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e5edf5;
}

.kq-service-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.kq-service-card:hover .kq-service-img img {
  transform: scale(1.05);
}

.kq-service-img:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(transparent, rgba(0,0,0,.4));
}

.kq-service-img span {
  position: absolute;
  z-index: 1;
  top: 14px;
  left: 14px;
  padding: 5px 10px;
  color: #0066b3;
  background: rgba(255,255,255,.92);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.kq-service-body {
  padding: 20px;
}

.kq-service-body h3 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 18px;
}

.kq-service-body a:hover h3 {
  color: #0066b3;
}

.kq-service-body p {
  margin: 0 0 14px;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.75;
}

.kq-service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.kq-service-features span,
.kq-service-feature-grid span {
  padding: 7px 10px;
  color: #4b5563;
  background: #f3f6fa;
  border-radius: 8px;
  font-size: 12px;
}

.kq-service-why {
  padding: 56px 0 72px;
  background: #fff;
}

.kq-service-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.kq-service-stats div {
  padding: 24px;
  text-align: center;
  border-radius: 16px;
  background: #f0f7ff;
}

.kq-service-stats strong {
  display: block;
  color: #0066b3;
  font-size: 32px;
}

.kq-service-stats span {
  color: #4b5563;
}

.kq-service-title-row {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}

.kq-service-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #0066b3;
  background: rgba(0,102,179,.1);
  border-radius: 16px;
  font-size: 24px;
  font-weight: 900;
}

.kq-service-title-row span {
  display: inline-block;
  margin-bottom: 7px;
  padding: 5px 10px;
  color: #0066b3;
  background: rgba(0,102,179,.1);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.kq-service-title-row h1 {
  margin: 0 0 7px;
  color: #111827;
  font-size: 30px;
}

.kq-service-title-row p {
  margin: 0;
  color: #6b7280;
  line-height: 1.8;
}

.kq-service-summary {
  margin-bottom: 28px;
  padding: 18px;
  color: #374151;
  border: 1px solid rgba(0,102,179,.12);
  border-radius: 14px;
  background: #f0f7ff;
  line-height: 1.8;
}

.kq-service-detail-img {
  overflow: hidden;
  margin-bottom: 34px;
  border-radius: 16px;
}

.kq-service-detail-img img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
}

.kq-service-block,
.kq-service-process {
  margin-bottom: 34px;
}

.kq-service-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.kq-service-feature-grid span {
  padding: 14px;
  font-size: 14px;
  font-weight: 700;
}

.kq-service-process div {
  position: relative;
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

.kq-service-process strong {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #fff;
  background: #0066b3;
  border-radius: 50%;
}

.kq-service-process span {
  color: #6b7280;
  line-height: 1.7;
}

.kq-service-process b {
  display: block;
  color: #111827;
}

.kq-service-contact {
  padding: 24px;
  color: #fff;
  border-radius: 16px;
  background: linear-gradient(135deg, #0066b3, #004a82);
}

.kq-service-contact h3 {
  margin: 0 0 10px;
  color: #fff;
}

.kq-service-contact p {
  margin: 0 0 16px;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
}

.kq-service-contact a {
  display: block;
  margin-top: 10px;
  padding: 11px 12px;
  color: #0066b3 !important;
  text-align: center;
  background: #fff;
  border-radius: 9px;
  font-weight: 800;
}

.kq-service-contact a + a {
  color: #fff !important;
  background: transparent;
  border: 1px solid rgba(255,255,255,.35);
}

.kq-service-side-card {
  padding: 22px;
}

.kq-service-side-card p {
  margin: 10px 0 0;
}

.kq-service-side-card p a {
  color: #4b5563;
  font-size: 14px;
}

@media (max-width: 1024px) {
  .kq-product-layout,
  .kq-product-detail-layout,
  .kq-service-detail-layout {
    grid-template-columns: 1fr;
  }

  .kq-product-sidebar,
  .kq-product-side-sticky,
  .kq-service-side-sticky {
    position: static;
    top: auto;
  }

  .kq-product-grid,
  .kq-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kq-product-hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .kq-catalog-hero {
    padding: 112px 0 48px;
  }

  .kq-catalog-hero h1 {
    font-size: 30px;
  }

  .kq-product-list-section,
  .kq-product-detail-section,
  .kq-service-list-section,
  .kq-service-detail-section {
    padding: 24px 0 48px;
  }

  .kq-product-grid,
  .kq-service-grid,
  .kq-service-stats,
  .kq-product-feature-grid,
  .kq-service-feature-grid {
    grid-template-columns: 1fr;
  }

  .kq-product-card {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .kq-product-img {
    aspect-ratio: 1 / 1;
    padding: 10px;
  }

  .kq-product-body {
    padding: 14px;
  }

  .kq-product-body p {
    display: none;
  }

  .kq-product-detail-main,
  .kq-service-detail-main {
    padding: 20px;
  }

  .kq-product-main-img {
    height: auto;
    aspect-ratio: 1 / 1;
    padding: 14px;
  }

  .kq-product-info h1,
  .kq-service-title-row h1 {
    font-size: 24px;
  }

  .kq-product-actions,
  .kq-product-cta,
  .kq-product-prenext,
  .kq-service-prenext {
    flex-direction: column;
  }

  .kq-product-prenext a,
  .kq-product-prenext span,
  .kq-service-prenext a,
  .kq-service-prenext span {
    max-width: 100%;
  }
}

/* 首页专属方案区放大 */
body.kq-home .kq-contact {
  padding-top: 90px;
  padding-bottom: 90px;
}

body.kq-home .kq-contact-grid {
  max-width: 920px;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 1fr);
  gap: 28px;
}

body.kq-home .kq-message-card {
  padding: 28px 30px;
  border-radius: 18px;
}

body.kq-home .kq-message-card h3 {
  margin-bottom: 20px;
  font-size: 20px;
}

body.kq-home .kq-message-form label {
  margin: 14px 0 8px;
  font-size: 14px;
}

body.kq-home .kq-message-form input,
body.kq-home .kq-message-form textarea {
  border-radius: 8px;
  font-size: 14px;
}

body.kq-home .kq-message-form input {
  height: 42px;
  padding: 0 14px;
}

body.kq-home .kq-message-form textarea {
  height: 96px;
  padding: 12px 14px;
}

body.kq-home .kq-message-form button {
  height: 46px;
  margin-top: 22px;
  border-radius: 8px;
  font-size: 14px;
}

body.kq-home .kq-contact-cards {
  gap: 14px;
}

body.kq-home .kq-contact-mini {
  min-height: 150px;
  padding: 24px;
  border-radius: 18px;
}

body.kq-home .kq-contact-mini i {
  width: 38px;
  height: 38px;
  flex-basis: 38px;
}

body.kq-home .kq-contact-mini h3 {
  margin-bottom: 10px;
  font-size: 17px;
}

body.kq-home .kq-contact-mini p {
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 640px) {
  body.kq-home .kq-contact {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  body.kq-home .kq-contact-grid {
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  body.kq-home .kq-message-card {
    padding: 22px 18px;
  }

  body.kq-home .kq-message-card h3 {
    font-size: 18px;
  }

  body.kq-home .kq-message-form input {
    height: 40px;
  }

  body.kq-home .kq-message-form textarea {
    height: 92px;
  }

  body.kq-home .kq-contact-mini {
    min-height: auto;
    padding: 20px;
  }
}
/* 20260609 批量细节修正：案例、服务、产品详情 */
.kq-home .kq-product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.kq-case-list-body .kq-case-desc {
  display: -webkit-box;
  margin: 10px 0 14px;
  overflow: hidden;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.8;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.kq-case-detail-side {
  align-self: stretch;
}

.kq-case-side-sticky {
  top: 82px;
  max-height: calc(100vh - 98px);
  overflow: auto;
  scrollbar-width: none;
}

.kq-case-side-sticky::-webkit-scrollbar {
  display: none;
}

.kq-case-contact-cta,
.kq-case-side-consult {
  box-shadow: 0 18px 42px rgba(0, 102, 179, .18);
}

.kq-service-filter {
  position: relative;
  top: auto;
  z-index: 3;
}

.kq-service-tabs {
  flex-wrap: wrap;
  overflow-x: visible;
  gap: 10px;
  padding: 16px 0;
}

.kq-service-tabs a {
  border: 1px solid #e5edf5;
  background: #f8fafc;
}

.kq-service-process {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin-top: 26px;
  padding: 24px;
  border: 1px solid #e5edf5;
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
}

.kq-service-process h2 {
  grid-column: 1 / -1;
  margin-bottom: 4px;
}

.kq-service-process > div {
  display: block !important;
  min-height: 142px;
  padding: 20px 16px 18px;
  border: 1px solid #e6eef7;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, .04);
}

.kq-service-process > div strong {
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: #0066b3;
  font-size: 15px;
}

.kq-service-process > div span {
  display: block;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.65;
}

.kq-service-process > div b {
  display: block;
  margin-bottom: 6px;
  color: #111827;
  font-size: 15px;
}

.kq-zlsb-contact-card {
  color: #fff;
  background: linear-gradient(135deg, #0066b3, #004f8c);
}

.kq-zlsb-contact-card h3,
.kq-zlsb-contact-card p {
  color: #fff;
}

.kq-zlsb-contact-card p {
  margin: 0 0 16px;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  line-height: 1.7;
}

.kq-zlsb-contact-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  color: #0066b3;
  border-radius: 14px;
  background: #fff;
  font-size: 22px;
}

.kq-zlsb-contact-card a {
  display: block;
  margin-top: 10px;
  padding: 11px 12px;
  text-align: center;
  color: #0066b3 !important;
  border-radius: 9px;
  background: #fff;
  font-weight: 800;
}

.kq-zlsb-contact-card a + a {
  color: #fff !important;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.5);
}

.kq-product-hero {
  padding: 24px 0 30px;
}

.kq-product-hero .kq-container {
  max-width: 1120px;
}

.kq-product-hero-grid {
  grid-template-columns: minmax(330px, 42%) minmax(0, 1fr);
  gap: 24px;
}

.kq-product-main-img {
  height: 360px;
  padding: 14px;
  border-radius: 18px;
}

.kq-product-info {
  padding: 30px;
  border: 1px solid #eef2f7;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(15,23,42,.05);
}

.kq-product-info h1 {
  font-size: 26px;
}

.kq-product-info p {
  margin-bottom: 18px;
  max-height: 58px;
  line-height: 1.7;
}

.kq-product-feature-grid div {
  padding: 12px 10px;
}

@media (max-width: 1024px) {
  .kq-case-side-sticky {
    max-height: none;
    overflow: visible;
  }

  .kq-product-hero-grid {
    grid-template-columns: 1fr;
  }

  .kq-service-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }

  .kq-service-tabs::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 640px) {
  .kq-home .kq-product-grid {
    grid-template-columns: 1fr;
  }

  .kq-product-hero {
    padding: 16px 0 22px;
  }

  .kq-product-main-img {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .kq-product-info {
    padding: 20px;
  }

  .kq-service-process {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .kq-service-process > div {
    min-height: auto;
  }
}
/* 20260609 移动端与产品卡片作用域修正 */
.kq-zlsb-contact-card { background: linear-gradient(135deg, #0b7fcb, #0066b3) !important; box-shadow: 0 16px 34px rgba(0,102,179,.14); }
body.kq-home:not(.kq-inner) .kq-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
body.kq-home:not(.kq-inner) .kq-product-card { display: block; text-align: center; }
body.kq-home:not(.kq-inner) .kq-product-img { aspect-ratio: 4 / 3; padding: 18px; }
body.kq-home:not(.kq-inner) .kq-product-card h3 { display: -webkit-box; min-height: 43px; overflow: hidden; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
body.kq-home:not(.kq-inner) .kq-product-card p { display: -webkit-box; min-height: 38px; overflow: hidden; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
@media (max-width: 640px) {
  body.kq-home:not(.kq-inner) .kq-hero { height: auto; aspect-ratio: 750 / 360; min-height: 190px; margin-top: 56px; background: #eef6ff; }
  body.kq-home:not(.kq-inner) .kq-hero-slide img { object-fit: contain; object-position: center center; background: #eef6ff; }
  body.kq-home:not(.kq-inner) .kq-hero-slide:after { display: none; }
  body.kq-home:not(.kq-inner) .kq-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 12px; }
  body.kq-home:not(.kq-inner) .kq-product-card { display: block !important; min-width: 0; padding: 0; overflow: hidden; }
  body.kq-home:not(.kq-inner) .kq-product-img { aspect-ratio: 1 / 1; padding: 8px; border-radius: 12px; }
  body.kq-home:not(.kq-inner) .kq-product-card h3 { min-height: 38px; margin: 10px 8px 4px; font-size: 13px; line-height: 1.45; }
  body.kq-home:not(.kq-inner) .kq-product-card p { min-height: 34px; margin: 0 8px 12px; font-size: 12px; line-height: 1.45; }
  .kq-product-page .kq-product-layout { display: block; }
  .kq-product-page .kq-product-sidebar { position: static; margin-bottom: 16px; }
  .kq-product-page .kq-product-sidebar .kq-product-cats { padding: 14px; border-radius: 14px; }
  .kq-product-page .kq-product-sidebar .kq-product-cats h3 { margin: -14px -14px 12px; padding: 13px 14px; font-size: 16px; }
  .kq-product-page .kq-product-cats nav { display: flex; flex-wrap: wrap; gap: 8px; max-height: 124px; overflow: auto; padding-right: 2px; }
  .kq-product-page .kq-product-cats nav a { flex: 0 0 auto; max-width: 100%; padding: 8px 10px; border-radius: 999px; background: #f3f8fd; font-size: 12px; line-height: 1.35; white-space: nowrap; }
  .kq-product-page .kq-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 12px; }
  .kq-product-page .kq-product-card { display: block !important; min-width: 0; }
  .kq-product-page .kq-product-list .kq-product-img, .kq-product-page .kq-product-img { aspect-ratio: 1 / 1; padding: 8px; }
  .kq-product-page .kq-product-body { padding: 10px 8px 12px; text-align: center; }
  .kq-product-page .kq-product-body h3 { display: -webkit-box; min-height: 38px; margin-bottom: 8px; overflow: hidden; font-size: 12px; line-height: 1.45; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
  .kq-product-page .kq-product-body p { display: none !important; }
  .kq-product-page .kq-product-more { font-size: 12px; }
  .kq-product-page .kq-product-hero { padding: 14px 0 18px; }
  .kq-product-page .kq-product-gallery { min-width: 0; }
  .kq-product-page .kq-product-main-img { width: 100%; height: auto !important; aspect-ratio: 1 / 1; padding: 10px; border-radius: 14px; }
  .kq-product-page .kq-product-slide img, .kq-product-page .kq-product-main-img > img { width: 100%; height: 100%; object-fit: contain; }
  .kq-product-page .kq-product-thumbs { flex-wrap: nowrap; overflow-x: auto; gap: 8px; padding-bottom: 4px; }
  .kq-product-page .kq-product-thumbs span { width: 54px; height: 54px; flex: 0 0 54px; }
  .kq-product-page .kq-product-info { padding: 16px; border-radius: 14px; }
  .kq-product-page .kq-product-info h1 { font-size: 21px; line-height: 1.35; }
  .kq-product-page .kq-product-feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
  .kq-product-page .kq-product-feature-grid div { padding: 10px 6px; }
}
/* 20260609 对齐新版移动端响应式 */
@media (max-width: 640px) {
  body.kq-home:not(.kq-inner) .kq-hero {
    height: 205px;
    aspect-ratio: auto;
    min-height: 0;
    margin-top: 56px;
    background: #eef6ff;
  }

  body.kq-home:not(.kq-inner) .kq-hero-slide img {
    object-fit: cover;
    object-position: center center;
  }

  body.kq-home:not(.kq-inner) .kq-feature-panel {
    width: calc(100% - 34px);
    margin: -22px auto 0;
    padding: 24px 22px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
    border-radius: 14px;
    box-shadow: 0 16px 38px rgba(15, 23, 42, .08);
  }

  body.kq-home:not(.kq-inner) .kq-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
  }

  body.kq-home:not(.kq-inner) .kq-feature-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 50%;
    background: rgba(0, 102, 179, .1);
  }

  body.kq-home:not(.kq-inner) .kq-feature-text strong {
    display: block;
    margin-bottom: 4px;
    color: #111827;
    font-size: 14px;
    line-height: 1.25;
  }

  body.kq-home:not(.kq-inner) .kq-feature-text span {
    color: #6b7280;
    font-size: 12px;
    line-height: 1.35;
  }

  body.kq-home:not(.kq-inner) #products.kq-section {
    padding-top: 42px;
  }

  body.kq-home:not(.kq-inner) .kq-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 22px 18px;
  }

  body.kq-home:not(.kq-inner) .kq-product-card {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }

  body.kq-home:not(.kq-inner) .kq-product-card a {
    display: block;
  }

  body.kq-home:not(.kq-inner) .kq-product-img {
    aspect-ratio: 1 / 1;
    padding: 8px;
    border-radius: 0;
    background: #f4f6f8;
    box-shadow: none;
  }

  body.kq-home:not(.kq-inner) .kq-product-card h3 {
    min-height: 38px;
    margin: 10px 0 4px;
    color: #0066b3;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 800;
    text-align: center;
  }

  body.kq-home:not(.kq-inner) .kq-product-card p {
    display: block;
    min-height: 0;
    margin: 0;
    color: #6b7280;
    font-size: 12px;
    line-height: 1.4;
    text-align: center;
  }

  body.kq-home:not(.kq-inner) .kq-industry {
    padding: 56px 0 62px;
    background: linear-gradient(135deg, #0066b3 0%, #005494 50%, #004a82 100%) !important;
  }

  body.kq-home:not(.kq-inner) .kq-industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px;
  }

  body.kq-home:not(.kq-inner) .kq-industry-card {
    min-height: auto;
    aspect-ratio: 3 / 4;
    border-radius: 10px;
    overflow: hidden;
  }

  body.kq-home:not(.kq-inner) .kq-industry-media,
  body.kq-home:not(.kq-inner) .kq-industry-mask {
    inset: 0;
  }

  body.kq-home:not(.kq-inner) .kq-industry-text {
    justify-content: flex-end;
    padding: 16px 10px 18px;
    text-align: center;
  }

  body.kq-home:not(.kq-inner) .kq-industry-text i {
    width: 42px;
    height: 42px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
  }

  body.kq-home:not(.kq-inner) .kq-industry-text strong {
    font-size: 14px;
  }

  body.kq-home:not(.kq-inner) .kq-industry-text p {
    font-size: 12px;
    line-height: 1.35;
  }

  body.kq-home:not(.kq-inner) .kq-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px;
    margin-top: 20px;
  }

  body.kq-home:not(.kq-inner) .kq-stat-card {
    padding: 18px 10px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, .06);
  }

  body.kq-home:not(.kq-inner) .kq-stat-card strong {
    font-size: 22px;
  }

  body.kq-home:not(.kq-inner) .kq-stat-card span {
    font-size: 12px;
  }

  .kq-product-page .kq-product-hero-grid {
    display: block;
  }

  .kq-product-page .kq-product-gallery {
    margin-bottom: 12px;
  }

  .kq-product-page .kq-product-main-img {
    width: 100%;
    height: auto !important;
    aspect-ratio: 1 / 1;
    padding: 18px;
    border-radius: 12px;
    background: #fff;
  }

  .kq-product-page .kq-product-slide img,
  .kq-product-page .kq-product-main-img > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .kq-product-page .kq-product-gallery-btn {
    width: 32px;
    height: 32px;
    font-size: 22px;
  }

  .kq-product-page .kq-product-prev {
    left: 10px;
  }

  .kq-product-page .kq-product-next {
    right: 10px;
  }

  .kq-product-page .kq-product-counter {
    top: 10px;
    right: 10px;
  }

  .kq-product-page .kq-product-thumbs {
    margin-top: 8px;
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 3px;
    scrollbar-width: none;
  }

  .kq-product-page .kq-product-thumbs::-webkit-scrollbar {
    display: none;
  }

  .kq-product-page .kq-product-thumbs span {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    padding: 4px;
    border-radius: 8px;
  }
}
/* 20260609 移动端最终修正：底部、详情轮播、联系卡 */
@media (max-width: 640px) {
  body.kq-home:not(.kq-inner) #products .kq-product-card:nth-child(n+9) {
    display: none !important;
  }

  .kq-footer {
    padding: 28px 0 78px;
  }

  .kq-footer-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 22px 18px;
    align-items: start;
  }

  .kq-footer-brand,
  .kq-footer-qr {
    grid-column: 1 / -1;
  }

  .kq-footer-brand img {
    width: 116px;
    margin-bottom: 10px;
  }

  .kq-footer-brand p,
  .kq-footer-brand span {
    font-size: 12px;
    line-height: 1.55;
  }

  .kq-footer-brand strong {
    margin: 8px 0 4px;
    font-size: 20px;
  }

  .kq-footer h3 {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .kq-footer a {
    margin: 7px 0;
    font-size: 12px;
    line-height: 1.35;
  }

  .kq-footer-qr {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .kq-footer-qr img {
    width: 88px;
    margin: 0;
  }

  .kq-footer-qr p {
    margin: 0;
    text-align: left;
    font-size: 12px;
  }

  .kq-copy {
    padding: 14px 16px;
    font-size: 11px;
    line-height: 1.6;
  }

  .kq-fixedbar {
    display: block !important;
    position: static;
    transform: none;
  }

  .kq-fixedbar > a,
  .kq-fixedbar .kq-wechat-float {
    display: none !important;
  }

  .kq-fixedbar .kq-backtop {
    position: fixed;
    right: 14px;
    bottom: 72px;
    z-index: 120;
    width: 44px;
    height: 44px;
    display: flex !important;
    border-radius: 14px;
    background: #0066b3;
    box-shadow: 0 10px 26px rgba(0, 102, 179, .25);
  }

  .kq-product-page .kq-catalog-hero-small {
    padding: 76px 0 28px;
  }

  .kq-product-page .kq-product-hero {
    padding: 0 0 18px;
    background: #f4f7fb;
  }

  .kq-product-page .kq-product-hero .kq-container {
    width: 100%;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .kq-product-page .kq-product-gallery {
    margin: 0;
  }

  .kq-product-page .kq-product-main-img {
    width: 100%;
    height: auto !important;
    aspect-ratio: 1 / 1;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
  }

  .kq-product-page .kq-product-slide img,
  .kq-product-page .kq-product-main-img > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0;
  }

  .kq-product-page .kq-product-gallery-btn {
    width: 30px;
    height: 30px;
    font-size: 20px;
    background: rgba(255,255,255,.94);
  }

  .kq-product-page .kq-product-prev {
    left: 12px;
  }

  .kq-product-page .kq-product-next {
    right: 12px;
  }

  .kq-product-page .kq-product-thumbs {
    margin: 0;
    padding: 8px 12px 10px;
    background: #fff;
    border-top: 1px solid #eef2f7;
  }

  .kq-product-page .kq-product-info {
    margin: 10px 8px 0;
    padding: 18px 14px;
    border-radius: 14px;
  }

  .kq-product-page .kq-product-tag {
    display: inline-flex !important;
    align-items: center;
    margin-bottom: 10px;
    padding: 5px 10px;
    font-size: 12px;
  }

  .kq-product-page .kq-product-info h1 {
    margin-bottom: 8px;
    font-size: 21px;
    line-height: 1.35;
  }

  .kq-product-page .kq-product-info p {
    max-height: none;
    margin-bottom: 14px;
    font-size: 13px;
    line-height: 1.65;
  }

  .kq-product-page .kq-product-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px;
    margin-bottom: 14px;
  }

  .kq-product-page .kq-product-feature-grid div {
    min-width: 0;
    padding: 10px 5px;
    border-radius: 10px;
  }

  .kq-product-page .kq-product-feature-grid strong {
    font-size: 12px;
  }

  .kq-product-page .kq-product-feature-grid span {
    font-size: 11px;
  }

  .kq-product-page .kq-product-actions {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    flex-direction: initial !important;
  }

  .kq-product-page .kq-product-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 8px;
    border-radius: 9px;
    font-size: 14px;
    line-height: 1.2;
  }

  .kq-contact-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px;
  }

  .kq-contact-info-card {
    min-height: 148px;
    padding: 18px 10px;
    border-radius: 14px;
  }

  .kq-contact-info-card i {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }

  .kq-contact-info-card span {
    font-size: 12px;
  }

  .kq-contact-info-card strong {
    font-size: 14px;
    word-break: break-word;
  }

  .kq-contact-info-card p {
    font-size: 11px;
  }
}
/* 20260609h mobile polish: home grid, footer, product detail, contact, backtop */
@media (max-width: 640px) {
  body.kq-home:not(.kq-inner) #products .kq-product-card:nth-of-type(n+9) { display: none !important; }
  body.kq-home:not(.kq-inner) #products .kq-product-grid,
  body.kq-home:not(.kq-inner) .kq-industry-grid { display: grid !important; grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 18px 14px !important; }
  body.kq-home:not(.kq-inner) #products .kq-product-card { padding: 0 !important; border: 0 !important; border-radius: 0 !important; box-shadow: none !important; background: transparent !important; min-height: 0 !important; }
  body.kq-home:not(.kq-inner) #products .kq-product-card .kq-product-img { width: 100% !important; aspect-ratio: 1 / 1 !important; height: auto !important; padding: 8px !important; border-radius: 0 !important; background: #f6f9fd !important; overflow: hidden !important; }
  body.kq-home:not(.kq-inner) #products .kq-product-card .kq-product-img img { width: 100% !important; height: 100% !important; object-fit: contain !important; }
  body.kq-home:not(.kq-inner) #products .kq-product-card h3 { margin: 10px 0 4px !important; font-size: 15px !important; line-height: 1.35 !important; text-align: left !important; display: -webkit-box !important; -webkit-line-clamp: 1 !important; -webkit-box-orient: vertical !important; overflow: hidden !important; }
  body.kq-home:not(.kq-inner) #products .kq-product-card p { margin: 0 !important; font-size: 13px !important; line-height: 1.45 !important; text-align: left !important; color: #667085 !important; display: -webkit-box !important; -webkit-line-clamp: 2 !important; -webkit-box-orient: vertical !important; overflow: hidden !important; }
  body.kq-home:not(.kq-inner) .kq-about-stats { display: grid !important; grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 12px !important; }
  body.kq-home:not(.kq-inner) .kq-about-stat { padding: 18px 8px !important; min-height: 92px !important; }

  .kq-footer { padding: 30px 0 76px !important; }
  .kq-footer-grid { display: grid !important; grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 20px 18px !important; align-items: flex-start !important; }
  .kq-footer-brand, .kq-footer-qr { grid-column: 1 / -1 !important; }
  .kq-footer-grid > div:nth-child(2), .kq-footer-grid > div:nth-child(3) { min-width: 0 !important; }
  .kq-footer-grid h3 { margin-bottom: 10px !important; font-size: 15px !important; }
  .kq-footer-grid a, .kq-footer-grid p { font-size: 12px !important; line-height: 1.8 !important; }
  .kq-footer-qr { display: flex !important; align-items: center !important; gap: 14px !important; }
  .kq-footer-qr img { width: 86px !important; max-width: 86px !important; }
  .kq-footer-copy { padding-bottom: 8px !important; font-size: 11px !important; line-height: 1.6 !important; }

  .kq-product-page .kq-product-hero { padding: 0 0 20px !important; background: #f4f8fc !important; }
  .kq-product-page .kq-product-hero .kq-container { width: 100% !important; max-width: none !important; padding-left: 0 !important; padding-right: 0 !important; }
  .kq-product-page .kq-product-hero-grid { display: block !important; gap: 0 !important; }
  .kq-product-page .kq-product-gallery { width: 100% !important; margin: 0 !important; padding: 0 !important; border-radius: 0 !important; border-left: 0 !important; border-right: 0 !important; box-shadow: none !important; background: #fff !important; }
  .kq-product-page .kq-product-main-img { width: 100% !important; height: auto !important; aspect-ratio: 1 / 1 !important; padding: 0 !important; border: 0 !important; border-radius: 0 !important; box-shadow: none !important; background: #fff !important; overflow: hidden !important; }
  .kq-product-page .kq-product-main-img img, .kq-product-page .kq-product-slide img { width: 100% !important; height: 100% !important; object-fit: contain !important; }
  .kq-product-page .kq-product-prev, .kq-product-page .kq-product-next { display: flex !important; width: 34px !important; height: 34px !important; top: 50% !important; transform: translateY(-50%) !important; z-index: 5 !important; }
  .kq-product-page .kq-product-prev { left: 10px !important; }
  .kq-product-page .kq-product-next { right: 10px !important; }
  .kq-product-page .kq-product-thumbs { padding: 10px 12px !important; gap: 8px !important; overflow-x: auto !important; flex-wrap: nowrap !important; background: #fff !important; border-bottom: 1px solid #e8eef5 !important; }
  .kq-product-page .kq-product-thumb { flex: 0 0 44px !important; width: 44px !important; height: 44px !important; padding: 2px !important; }
  .kq-product-page .kq-product-info { margin: 12px 10px 0 !important; padding: 14px 12px 16px !important; border-radius: 14px !important; background: #fff !important; box-shadow: 0 10px 26px rgba(15, 23, 42, .06) !important; }
  .kq-product-page .kq-product-tag { display: inline-flex !important; margin-bottom: 10px !important; }
  .kq-product-page .kq-product-info h1 { font-size: 20px !important; line-height: 1.35 !important; margin-bottom: 8px !important; }
  .kq-product-page .kq-product-info > p { font-size: 13px !important; line-height: 1.7 !important; display: -webkit-box !important; -webkit-line-clamp: 2 !important; -webkit-box-orient: vertical !important; overflow: hidden !important; }
  .kq-product-page .kq-product-feature-grid { display: grid !important; grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 8px !important; margin: 12px 0 !important; }
  .kq-product-page .kq-product-actions { display: grid !important; grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 10px !important; flex-direction: initial !important; width: 100% !important; }
  .kq-product-page .kq-product-actions a, .kq-product-page .kq-product-actions .kq-btn, .kq-product-page .kq-product-actions .kq-btn-outline { width: 100% !important; min-width: 0 !important; height: 42px !important; padding: 0 8px !important; border-radius: 10px !important; font-size: 14px !important; line-height: 42px !important; text-align: center !important; }
  .kq-product-page .kq-product-layout { display: block !important; padding-top: 18px !important; }
  .kq-product-page .kq-product-content, .kq-product-page .kq-product-sidebar { width: auto !important; margin: 0 10px 14px !important; }
  .kq-product-page .kq-product-sidebar { position: static !important; top: auto !important; }

  body.kq-inner .kq-contact-info-grid { display: grid !important; grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 12px !important; }
  body.kq-inner .kq-contact-info-card { min-height: 132px !important; padding: 18px 8px !important; text-align: center !important; border-radius: 14px !important; }
  body.kq-inner .kq-contact-info-card i { margin: 0 auto 10px !important; }
  body.kq-inner .kq-contact-info-card h3, body.kq-inner .kq-contact-info-card strong { font-size: 13px !important; line-height: 1.45 !important; word-break: break-all !important; }
  body.kq-inner .kq-contact-info-card p { font-size: 11px !important; line-height: 1.5 !important; }

  .kq-fixedbar { display: block !important; position: static !important; transform: none !important; }
  .kq-fixedbar > a, .kq-fixedbar .kq-wechat-float { display: none !important; }
  .kq-fixedbar .kq-backtop { display: flex !important; position: fixed !important; right: 14px !important; bottom: 72px !important; z-index: 130 !important; width: 44px !important; height: 44px !important; border-radius: 14px !important; background: #0072bc !important; color: #fff !important; box-shadow: 0 12px 24px rgba(0, 114, 188, .28) !important; }
}
/* 20260609i keep 9 recommended products visible on mobile */
@media (max-width: 640px) {
  body.kq-home:not(.kq-inner) #products .kq-product-card:nth-of-type(n+9) {
    display: flex !important;
    flex-direction: column !important;
  }
}
/* 20260609j final home count/footer mobile bar correction */
body.kq-home:not(.kq-inner) #products .kq-product-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 28px 24px !important;
}

.kq-footer-qr img {
  width: 118px !important;
  height: 118px !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: cover !important;
  border-radius: 8px !important;
  background: #fff !important;
}

@media (max-width: 640px) {
  body.kq-home:not(.kq-inner) #products .kq-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 22px 18px !important;
  }

  body.kq-home:not(.kq-inner) #products .kq-product-card:nth-of-type(n+9) {
    display: none !important;
  }

  .kq-footer {
    padding: 34px 0 78px !important;
    background: #00598d !important;
  }

  .kq-footer-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 20px 18px !important;
  }

  .kq-footer-brand {
    grid-column: 1 / -1 !important;
  }

  .kq-footer-brand img {
    width: 112px !important;
    height: auto !important;
    margin-bottom: 10px !important;
  }

  .kq-footer-brand strong {
    display: block !important;
    margin: 7px 0 4px !important;
    font-size: 20px !important;
    line-height: 1.2 !important;
  }

  .kq-footer-grid > div:nth-child(2),
  .kq-footer-grid > div:nth-child(3) {
    grid-column: auto !important;
  }

  .kq-footer-grid h3 {
    color: #fff !important;
    font-size: 14px !important;
    margin-bottom: 10px !important;
  }

  .kq-footer-grid a,
  .kq-footer-grid p,
  .kq-footer-brand span {
    color: rgba(255,255,255,.9) !important;
    font-size: 12px !important;
    line-height: 1.85 !important;
  }

  .kq-footer-qr {
    grid-column: 1 / -1 !important;
    display: grid !important;
    grid-template-columns: 94px 1fr !important;
    align-items: center !important;
    gap: 14px !important;
    margin-top: 2px !important;
  }

  .kq-footer-qr img {
    width: 94px !important;
    height: 94px !important;
    min-width: 94px !important;
    object-fit: cover !important;
    border-radius: 6px !important;
  }

  .kq-footer-qr p {
    margin: 0 !important;
    color: #fff !important;
    line-height: 1.75 !important;
  }

  .kq-copy,
  .kq-footer-copy {
    color: rgba(255,255,255,.78) !important;
    font-size: 11px !important;
    line-height: 1.7 !important;
    text-align: center !important;
    padding: 14px 16px 8px !important;
  }

  .kq-fixedbar {
    display: none !important;
  }

  .kq-mobile-bar {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 160 !important;
    height: 52px !important;
    padding: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    background: #1f2937 !important;
    border-top: 1px solid rgba(255,255,255,.12) !important;
    box-shadow: 0 -8px 22px rgba(15, 23, 42, .18) !important;
  }

  .kq-mobile-bar a,
  .kq-mobile-bar button {
    min-width: 0 !important;
    width: 100% !important;
    height: 52px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #fff !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 3px !important;
    font-size: 11px !important;
    line-height: 1 !important;
    text-decoration: none !important;
    box-shadow: none !important;
  }

  .kq-mobile-bar i {
    display: block !important;
    font-style: normal !important;
    font-size: 17px !important;
    line-height: 1 !important;
    color: #fff !important;
  }

  .kq-mobile-bar span {
    display: block !important;
    color: #fff !important;
    font-size: 11px !important;
  }
}
/* 20260609k mobile overflow fix: real responsive width lock */
@media (max-width: 640px) {
  html,
  body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  *,
  *::before,
  *::after {
    box-sizing: border-box !important;
  }

  body > *,
  .kq-page,
  .kq-home,
  .kq-inner,
  .kq-container,
  section,
  header,
  footer,
  main {
    max-width: 100% !important;
  }

  .kq-container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body.kq-home:not(.kq-inner) .kq-hero,
  body.kq-home:not(.kq-inner) .kq-hero-slider,
  body.kq-home:not(.kq-inner) .kq-hero-slide,
  body.kq-home:not(.kq-inner) #products,
  body.kq-home:not(.kq-inner) .kq-section,
  body.kq-home:not(.kq-inner) .kq-product-grid,
  body.kq-home:not(.kq-inner) .kq-industry-grid,
  body.kq-home:not(.kq-inner) .kq-about,
  body.kq-home:not(.kq-inner) .kq-footer {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow-x: clip !important;
  }

  body.kq-home:not(.kq-inner) #products .kq-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  body.kq-home:not(.kq-inner) #products .kq-product-card,
  body.kq-home:not(.kq-inner) #products .kq-product-card * {
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .kq-product-page,
  .kq-product-page .kq-catalog-hero,
  .kq-product-page .kq-product-hero,
  .kq-product-page .kq-product-hero .kq-container,
  .kq-product-page .kq-product-hero-grid,
  .kq-product-page .kq-product-gallery,
  .kq-product-page .kq-product-info,
  .kq-product-page .kq-product-layout,
  .kq-product-page .kq-product-content,
  .kq-product-page .kq-product-sidebar {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow-x: clip !important;
  }

  .kq-product-page .kq-product-hero .kq-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .kq-product-page .kq-product-hero-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .kq-product-page .kq-product-gallery {
    display: block !important;
    margin: 0 !important;
  }

  .kq-product-page .kq-product-main-img {
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    max-height: none !important;
  }

  .kq-product-page .kq-product-main-img img,
  .kq-product-page .kq-product-slide,
  .kq-product-page .kq-product-slide img {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .kq-product-page .kq-product-info {
    width: auto !important;
    margin: 12px 10px 0 !important;
  }

  .kq-product-page .kq-product-feature-grid,
  .kq-product-page .kq-product-actions {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .kq-product-page table,
  .kq-product-page img,
  .kq-product-page video,
  .kq-product-page iframe {
    max-width: 100% !important;
  }
}
/* 20260609l stricter mobile no-horizontal-scroll fallback */
@media (max-width: 640px) {
  html,
  body {
    position: relative !important;
    overflow-x: hidden !important;
  }

  .kq-header,
  .kq-main,
  .kq-footer,
  .kq-container,
  .kq-hero,
  .kq-section,
  .kq-product-page,
  .kq-product-page .kq-product-hero,
  .kq-product-page .kq-product-hero .kq-container,
  .kq-product-page .kq-product-hero-grid,
  .kq-product-page .kq-product-gallery,
  .kq-product-page .kq-product-main-img,
  .kq-product-page .kq-product-info,
  .kq-product-page .kq-product-layout,
  .kq-product-page .kq-product-content,
  .kq-product-page .kq-product-sidebar,
  body.kq-home:not(.kq-inner) .kq-product-grid,
  body.kq-home:not(.kq-inner) .kq-industry-grid,
  body.kq-home:not(.kq-inner) .kq-about-stats {
    max-width: 100% !important;
    min-width: 0 !important;
    overflow-x: hidden !important;
  }

  .kq-product-page .kq-product-main-img {
    width: 100% !important;
  }

  .kq-product-page .kq-product-gallery,
  .kq-product-page .kq-product-main-img,
  .kq-product-page .kq-product-slide {
    flex: 0 1 auto !important;
  }

  .kq-product-page .kq-product-info,
  .kq-product-page .kq-product-content,
  .kq-product-page .kq-product-sidebar {
    box-sizing: border-box !important;
  }
}
/* 20260609m mobile wechat copy toast */
.kq-copy-toast {
  position: fixed;
  left: 50%;
  bottom: 72px;
  z-index: 220;
  max-width: calc(100% - 32px);
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(15, 23, 42, .92);
  color: #fff;
  font-size: 13px;
  line-height: 1.4;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity .18s ease, transform .18s ease;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .22);
}
.kq-copy-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* 20260610 product detail mobile rich-text/table overflow fix */
@media (max-width: 640px) {
  .kq-product-page .kq-product-detail-main,
  .kq-product-page .kq-product-block {
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: visible !important;
  }

  .kq-product-page .kq-product-content,
  .kq-product-page .kq-product-params {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    -webkit-overflow-scrolling: touch;
  }

  .kq-product-page .kq-product-content p,
  .kq-product-page .kq-product-content div,
  .kq-product-page .kq-product-content span,
  .kq-product-page .kq-product-content strong,
  .kq-product-page .kq-product-params p,
  .kq-product-page .kq-product-params div,
  .kq-product-page .kq-product-params span,
  .kq-product-page .kq-product-params strong {
    max-width: 100% !important;
    white-space: normal !important;
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
  }

  .kq-product-page .kq-product-content img,
  .kq-product-page .kq-product-params img {
    max-width: 100% !important;
    height: auto !important;
  }

  .kq-product-page .kq-product-content table,
  .kq-product-page .kq-product-params table {
    display: table !important;
    width: auto !important;
    min-width: 100% !important;
    max-width: none !important;
    table-layout: auto !important;
    border-collapse: collapse !important;
  }

  .kq-product-page .kq-product-content table th,
  .kq-product-page .kq-product-content table td,
  .kq-product-page .kq-product-params table th,
  .kq-product-page .kq-product-params table td {
    min-width: 72px !important;
    max-width: 220px !important;
    padding: 8px 6px !important;
    white-space: normal !important;
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
    box-sizing: border-box !important;
  }
}
@media (max-width: 640px) {
  .kq-mobile-bar button.kq-mobile-wechat { cursor: pointer !important; }
}
/* 20260609n pc product showcase and catalog hero background */
@media (min-width: 641px) {
  body.kq-home:not(.kq-inner) #products.kq-section { padding-top: 86px !important; padding-bottom: 84px !important; }
  body.kq-home:not(.kq-inner) #products .kq-container { max-width: 1280px !important; width: calc(100% - 80px) !important; }
  body.kq-home:not(.kq-inner) #products .kq-section-title { margin-bottom: 42px !important; }
  body.kq-home:not(.kq-inner) #products .kq-product-grid { display: grid !important; grid-template-columns: repeat(4, minmax(0, 1fr)) !important; gap: 30px 28px !important; }
  body.kq-home:not(.kq-inner) #products .kq-product-card { display: block !important; min-height: 0 !important; padding: 16px 16px 20px !important; border: 1px solid #e6edf5 !important; border-radius: 18px !important; background: #fff !important; box-shadow: 0 16px 38px rgba(15, 23, 42, .07) !important; text-align: center !important; overflow: hidden !important; }
  body.kq-home:not(.kq-inner) #products .kq-product-card a { display: block !important; }
  body.kq-home:not(.kq-inner) #products .kq-product-card .kq-product-img { width: 100% !important; height: auto !important; aspect-ratio: 1 / 1 !important; padding: 8px !important; border-radius: 14px !important; background: #f6f9fd !important; box-shadow: none !important; }
  body.kq-home:not(.kq-inner) #products .kq-product-card .kq-product-img img { width: 100% !important; height: 100% !important; object-fit: contain !important; }
  body.kq-home:not(.kq-inner) #products .kq-product-card h3 { margin: 16px 0 8px !important; min-height: 44px !important; color: #0066b3 !important; font-size: 17px !important; line-height: 1.35 !important; font-weight: 800 !important; white-space: normal !important; display: -webkit-box !important; -webkit-line-clamp: 2 !important; -webkit-box-orient: vertical !important; overflow: hidden !important; }
  body.kq-home:not(.kq-inner) #products .kq-product-card p { min-height: 40px !important; margin: 0 !important; color: #6b7280 !important; font-size: 13px !important; line-height: 1.55 !important; display: -webkit-box !important; -webkit-line-clamp: 2 !important; -webkit-box-orient: vertical !important; overflow: hidden !important; }
}

.kq-product-page .kq-catalog-hero {
  background: linear-gradient(90deg, rgba(0, 102, 179, .94), rgba(0, 102, 179, .68)), url("/skin/images/kq/banner-2.jpg") center/cover no-repeat !important;
}
.kq-product-page .kq-catalog-hero:before { opacity: .08 !important; }
